音乐播放器ui布局效果

代码语言:html

所属分类:布局界面

代码描述:音乐播放器ui布局效果

代码标签: 布局 效果

下面为部分代码预览,完整代码请点击下载或在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">
<style>
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700);

*
{
margin:0px;
padding:0px;
outline:none;
}

html{height:100%}
 
body{
background: #e7e7e7;
padding:10px;
font-family:'Source Sans Pro', sans-serif;;
color:#000;
}

#playstation
{                                     
background: #f7f7f7;
border-radius: 20px;
width: 400px;
border: 1px solid #c1c1c1;
overflow:auto;
margin:5px auto;
}
#controlpanel
{
padding:50px 25px 15px;
overflow:auto;
position:relative;
}
#songpro
{
width: 180px;
height: 180px;
border-radius: 50%;
border: 1px solid #eaeaea;
position: relative;
margin: 0 0px 0px 23px;
background: url("http://repo.bfw.wiki/bfwrepo/image/5ef9ef9fbf5b0.png") no-repeat 0 0;
background-size: 220px 220px;
box-shadow: inset 0px 0px 10px 2px #5f5f5f;
}

#backward, #forward
{
content: "fa-backward";
width: 60px;
height: 60px;
border-radius: 50%;
margin-top: 67px;
border: 1px solid #eaeaea;
background: #f7f7f7;
box-shadow: 0px 0px 5px #e9e9e9,inset 0px 2px 0px #fdfdfd;
cursor:pointer;
-webkit-transition:0.2s;
-o-transition:0.2s;
-ms-transition:0.2s;
-moz-transition:0.2s;
transition:0.2s;
}
#backward{float:left;}
#forward{float:right;}

#backward:hover, #forward:hover
{
box-shadow: 0px 0px 0px #cacaca,inset 0px 2px 0px #fdfdfd;
-webkit-transition:0.2s;
-o-transition:0.2s;
-ms-transition:0.2s;
-moz-transition:0.2s;
transition:0.2s;
}
#backward:hover .fa
{
text-shadow:0px 2px 0px #cacaca;
-webkit-transition:0.2s;
-o-transition:0.2s;
-ms-transition:0.2s;
-moz-transition:0.2s;
transition:0.2s;
}

#forward:hover .fa
{
text-shadow:0px 2px 0px #cacaca;
-webkit-transition:0.2s;
-o-transition:0.2s;
-ms-transition:0.2s;
-moz-transition:0.2s;
transition:0.2s;
}

.fa
{
-webkit-transition:0.2s;
-o-transition:0.2s;
-ms-transition:0.2s;
-moz-transition:0.2s;
transition:0.2s;
} 

#backward .fa, #forward .fa{margin:19px 0px 0px 22px;}
#backward .fa{margin:19px 0px 0px 16px;}

.inlineblo{display:inline-block;}

.fa{color:#666666;font-size:1.5em;}

h1, h2
{
text-align: center;
font-weight: normal;
color: #333333;
padding:5px 15px 5px 15px;
font-size: 1.8em;
}
h2{color:#999999;font-size: 1.5em;padding:0px 15px 5px 15px;}

ol{padding:0px 0px 15px 0px;counter-reset: section;}

ol li
{
list-style-type:none;
padding:15px 25px 15px 15px;
border-bottom:1px solid #cccccc;
border-top:1px solid #ffffff;
font-size:1.25em;
color:#666666;
text-shadow:0px 2px 0px #ffffff;
cursor:pointer;
-webkit-transition:0.2s;
-o-transition:0.2s;
-ms-transition:0.2s;
-moz-transition:0.........完整代码请登录后点击上方下载按钮下载查看

网友评论0