扁平式音乐播放器效果
代码语言:html
所属分类:多媒体
代码描述:扁平式音乐播放器效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link type="text/css" rel="stylesheet" href="http://repo.bfw.wiki/bfwrepo/css/font-awesome-4.7.0/css/font-awesome.min.css"> <link type="text/css" rel="stylesheet" href="http://repo.bfw.wiki/bfwrepo/css/mediaelementplayer.min.css"> <style> *:focus{ outline: none; } html { background: #f2f2f2; } body { margin: 0; font-family: "Raleway",sans-serif; } h1 { margin: 0; font-size: 33px; color: #fff; padding: 0 10%; } h3 { margin: 0; font-size: 17px; font-weight: 500; color: #ccc; padding: 0 10%; } .container { display: block; width: 100%; height: 750px; margin: auto; overflow: hidden; background-image: url("http://repo.bfw.wiki/bfwrepo/image/5ef9f42e28b53.png"); background-repeat: repeat; background-size: cover; } .music-player { display: block; position: relative; width: 400px; height: 570px; margin: auto; margin-top: 6%; border-radius: 0 0 10px 10px; background: transparent linear-gradient(to bottom,rgba(10,11,31,0.9) 50%,rgb(10,11,31) 70%) repeat scroll 0 0; box-shadow: 1px 10px 20px 5px #222; } .cover { float: left; width: 100%; height: 66%; } .cover img { display: block; position: absolute; top: 8%; left: 14%; width: 70%; margin: auto; text-align: center; } .titre { float: left; width: 100%; } .lecteur { width: 100%; display: block; height: auto; position: relative; float: left; } .mejs__button>button:focus { outline: 0px dotted #999; } .mejs__container { position: relative; background-color: transparent; min-width: auto !important; } .mejs__controls { padding: 0 10%; background: transparent !important; display: block; position: relative; } .mejs__controls div { display: block; float: left; position: relative; } .mejs__controls .mejs__playpause-button { position: absolute !important; right: 8%; bottom: 95%; width: 40px; } .mejs__controls .mejs__playpause-button button { display: block; width: 40px; height: 40px; padding: 0; border: 0; font-family: FontAwesome; font-size: 23px; color: #5bbb95; background: transparent; padding: 0; margin: 0; } .mejs__controls .mejs__play button:before{ content:"\f04b"; } .mejs__controls .mejs__pause button:before{ content:"\f04c"; } .mejs__controls .mejs__volume-button button { display: block; width: 40px; height: 40px; padding: 0; border: 0; font-family: FontAwesome; font-size: 20px; color: #5bbb95; background: transparent; margin: 0; padding: 0; } .mejs__controls .mejs__mute button:before { content: "\f028"; } .mejs__controls .mejs__unmute button:before { content: "\f026"; } .mejs__controls .mejs__time { width: 100%; margin-top: 7%; margin-bottom: 3%; color: #fff; height: auto; padding: 0; overflow: visible; min-width: 100%; } .mejs__controls .mejs__time span { font-size: 15px; } .mejs__controls span.mejs__duration { float: right; text-align: right; color: #ccc; } .mejs__controls span.mejs__currenttime { font-weight: 700; float: left; } .mejs__controls .mejs__time-rail { width: 100%; margin: 0; } .mejs__controls .mejs__time-rail span { position: absolute; top: 0; width: 100%; he.........完整代码请登录后点击上方下载按钮下载查看
网友评论0