Dreamweaver教程:网页播放器按钮的制作方法
今天给大家分享下——播放器按钮的制作案例,请大家看看下面的代码:
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8" />
<style>
body{
background:#000;
}
header{
font-family:"MicroSoft YaHei";
font-size:30px;
color:#990000;
}
.circle{
width:120px;
height:120px;
-webkit-border-radius:60px;
-moz-border-radius:60px;
border-radius:60px;
border:2px #FFF solid;
float:left;
margin:10px;
cursor:pointer;
}
.circle:hover,.circle1:hover{
-webkit-box-shadow:rgba(255,255,255,0.6) 0 0 15px;
-moz-box-shadow:rgba(255,255,255,0.6) 0 0 15px;
box-shadow:rgba(255,255,255,0.6) 0 0 15px;
}
.circle1{
width:140px;
height:140px;
-webkit-border-radius:70px;
-moz-border-radius:70px;
border-radius:70px;
border:2px #FFF solid;
float:left;
cursor:pointer;
}
.triangleRight{
width: 0;
height: 0;
border-left: 60px solid #FFF;
border-top: 30px solid transparent;
border-bottom: 30px solid transparent;
-webkit-transform:scale(0.6,1.2);
-moz-transform:scale(0.6,1.2);
transform:scale(0.6,1.2);
}
.next1{
margin:30px -10px 0 20px;
float:left;
}
.next2{
margin:30px 0 0 -20px;
float:left;
}
.triangleleft{
width: 0;
height: 0;
border-Right: 60px solid #FFF;
border-top: 30px solid transparent;
border-bottom: 30px solid transparent;
-webkit-transform:scale(0.6,1.2);
-moz-transform:scale(0.6,1.2);
transform:scale(0.6,1.2);
}
.pre1{
margin:30px -10px 0 10px;
float:left;
}
.pre2{
margin:30px 0 0 -20px;
float:left;
}
.pause{
width:20px;
height:80px;
background:#FFF;
float:left;
}
.pause1{
margin:30px 10px 0 40px;
}
.pause2{
margin:30px 10px 0 10px;
}
</style>
</head>
<body>
<header>播放器按钮</header><section>
<div class="circle">
<div class="triangleLeft pre1"></div>
<div class="triangleLeft pre2"></div>
</div>
<div class="circle1">
<div class="pause pause1"></div>
<div class="pause pause2"></div>
</div>
<div class="circle">
<div class="triangleRight next1"></div>
<div class="triangleRight next2"></div>
</div>
</section>
</body>
</html>
好了,代码就给大家展示到这里了,赶快动手试一试哦!不要直接复制——粘贴哦!要好好研究内在的代码含义;
Word教程网 | Excel教程网 | Dreamweaver教程网 | Fireworks教程网 | PPT教程网 | FLASH教程网 | PS教程网 |
HTML教程网 | DIV CSS教程网 | FLASH AS教程网 | ACCESS教程网 | SQL SERVER教程网 | C语言教程网 | JAVASCRIPT教程网 |
ASP教程网 | ASP.NET教程网 | CorelDraw教程网 |