Toggle navigation
Bootsnipp
Bootstrap
For
CSS Frameworks
Bootstrap
Foundation
Semantic UI
Materialize
Pure
Bulma
References
CSS Reference
Tools
Community
Page Builder
Form Builder
Button Builder
Icon Search
Dan's Tools
Diff / Merge
Color Picker
Keyword Tool
Web Fonts
.htaccess Generator
Favicon Generator
Site Speed Test
Snippets
Featured
Tags
By Bootstrap Version
4.1.1
4.0.0
3.3.0
3.2.0
3.1.0
3.0.3
3.0.1
3.0.0
2.3.2
Register
Login
"Untitled"
Bootstrap 4.1.1 Snippet by
abhichavan143
4.1.1
Preview
HTML
CSS
View Full Screen
Fork
Fork this
166
 
0 Fav
Post to Facebook
Tweet this
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Audioplyer</title> <link rel="stylesheet" type="text/css" href="audioplayr.css"> </head> <body> </body> <body> <main class="player"> <div class="header"> <a href="#" class="button"> <i class="fas fa-bars" aria-hidden="true"></i> <span class="sr-only">menu bar</span> </a> <p>Now Playing</p> <a href="#" class="button"> <i class="fas fa-search" aria-hidden="true"></i> <span class="sr-only">Search</span> </a> </div><!-- header --> <img src="https://www.buttonmuseum.org/sites/default/files/MU-a-hard-days-night-button_busy_beaver_button_museum.png" alt="album art" class="art"><!-- art --> <div class="info"> <h1>(........)</h1> <p>(............)</p> </div><!-- info --> <div class="prog"> <div class="prog-time"> <p class="left">0:00</p> <p class="right">2:06</p> </div> <div class="prog-bar"> <div class="prog-bar-inner"></div> </div> </div><!-- progress --> <ul class="buttons"> <a href="#" class="button button-sm"> <i class="fas fa-random fa-sm" aria-hidden="true"></i> <span class="sr-only">Shuffle</span> </a> <a href="#" class="button button-md"> <i class="fas fa-step-backward" aria-hidden="true"></i> <span class="sr-only">Previous Music</span> </a> <a href="#" class="button button-lg"> <i class="fas fa-pause fa-lg" aria-hidden="true" aria-hidden="true"></i> <span class="sr-only">Pause</span> </a> <a href="#" class="button button-md"> <i class="fas fa-step-forward"></i> <span class="sr-only">Next Music</span> </a> <a href="#" class="button button-sm"> <i class="fas fa-circle-notch fa-sm" aria-hidden="true"></i> <span class="sr-only">Repeat Song</span> </a> </ul> <div class="bar"></div><!-- bar --> </main> <script src="https://kit.fontawesome.com/7d35781f0a.js" crossorigin="anonymous"></script> <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet"> </body> </html>
* { margin: 0; padding: 0; box-sizing: border-box; } :root { font-size: 14px; font-family: 'Roboto', sans-serif; --bg: #EBEBEB; --black: #333333; --prog: #A4B7BE; } body { background: var(--bg); color: var(--black); } a { text-decoration: none; } .player { width: 80%; max-width: 275px; min-height: 550px; margin: 2rem auto; padding: 3rem 1.25rem; background: var(--bg); box-shadow: 20px 20px 60px #c8c8c8, -20px -20px 60px #ffffff; border-radius: 15px; border: 1px solid rgb(223, 223, 223); position: relative; } .player::before { content: ''; display: block; background: #333; width: 100px; height: 20px; border-radius: 0 0 50% 50%; position: absolute; top: 0; left: 87px; } .header { height: 40px; display: grid; grid-template-columns: 1fr 3fr 1fr; align-items: center; justify-items: center; } .header > .button { width: 2rem; height: 2rem; display: grid; align-items: center; justify-items: center; color: var(--black); background: linear-gradient(145deg, #fbfbfb, #d4d4d4); box-shadow: 4px 4px 7px #cccccc, -4px -4px 7px #ffffff; border-radius: 6px; } .art { display: block; width: 175px; height: 175px; margin: 1rem auto; border-radius: 50%; border: 4px solid #EBEBED; box-shadow: 16px 16px 57px #acacac, -16px -16px 57px #ffffff; } .info { margin: 1.5rem 0; text-align: center; } .info h1 { color: var(--black); font-weight: 500; margin-bottom: 0.5rem; } .info p { font-size: 1.15rem; color: var(--prog); } .prog { padding: 10px 0; } .prog-time { padding: 3px 5px; color: var(--prog); font-weight: bold; display: flex; justify-content: space-between; } .prog-time > p { font-size: 0.65rem; } .prog-bar { width: 100%; height: 10px; padding: 1px; border-radius: 25px; background: linear-gradient(145deg, #fbfbfb, #d4d4d4); box-shadow: 5px 5px 10px #a5a5a5, -5px -5px 10px #ffffff; } .prog-bar-inner { height: 8px; background: var(--prog); border-radius: 25px; } .buttons { margin: 2rem 0; list-style: none; display: flex; justify-content: center; align-items: center; } .button { color: var(--prog); border-radius: 50%; margin: 0 5px; display: flex; justify-content: center; align-items: center; box-shadow: 5px 5px 10px #d4d4d4, -5px -5px 10px #ffffff; } .button-sm { width: 2rem; height: 2rem; opacity: 0.75; } .button-md { width: 2.5rem; height: 2.5rem; opacity: 0.85; } .button-lg { width: 3.25rem; height: 3.25rem; box-shadow: inset 6px 6px 12px #c8c8c8, inset -6px -6px 12px #ffffff } .bar { width: 50%; height: 2px; margin: auto; background: var(--prog); border-radius: 25px; position: absolute; left: 25%; bottom: 1rem; } .credit { background: linear-gradient(45deg, #3297D3, #8FEFFB); color: var(--black); padding: 1rem 0; text-align: center; } .art { animation: rolling-disk 7.5s 0.25s linear infinite; } .prog-bar-inner { animation: timer 30s linear 0.1s; } /* keyframes */ @keyframes timer { 0% {width: 0%;} 100% {width: 100%;} } @keyframes rolling-disk { 0% {transform: rotate(0);} 100% {transform: rotate(1turn);} }
Related:
See More
Template
Argon Dashboard PRO
Questions / Comments:
Post
Posting Guidelines
Formatting
- Now
×
Close
Donate
BTC: 12JxYMYi6Vt3mx3hcmP3B2oyFiCSF3FhYT
ETH: 0xCD715b2E3549c54A40e6ecAaFeB82138148a6c76