标签:pup rcu aic oval ott ios1 rac gtid bgp
3.jpg
bg.png
主要知识点 :
相对定位、绝对定位:子元素采用绝对定位,父元素要采用相对定位,简称“子绝父相”。
过渡效果:
transition: 要过渡的属性(一般设置为all) 花费时间 运动曲线 何时开始
一般transition只设置前两个属性
其中运动曲线有:
以下为详细代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>推拉门</title>
<style>
section{
width: 450px;
height: 300px;
margin:100px auto;
background: url(3.jpg) no-repeat;
position: relative;
perspective:1000px;
}
.left,.right{
position: absolute;
top: 0;
width: 50%;
height: 100%;
background-color: pink;
transition: all 2s;
}
.left {
left: 0;
border-right: 1px solid #CCC;
transform-origin: left;
background:url(bg.png) repeat;
}
.right{
right: 0;
border-left: 1px solid #CCC;
transform-origin: right;
background:url(bg.png) repeat;
}
.left:before{
content: "";
height: 20px;
width: 20px;
border-radius: 50%;
position: absolute;
right:5px;
top:50%;
transform: translate(0,-50%);
border: 1px solid #333;
}
.right:before{
content: "";
height: 20px;
width: 20px;
border-radius: 50%;
position: absolute;
left:5px;
top:50%;
/*向上移动自身的50%*/
transform: translate(0,-50%);
border: 1px solid #333;
}
/*.left:hover{
transform: rotateY(-200deg);
}
.right:hover{
transform: rotateY(200deg);
}*/
section:hover .left{
transform: rotateY(-200deg);
}
section:hover .right{
transform: rotateY(200deg);
}
</style>
</head>
<body>
<section>
<div class="left"></div>
<div class="right"></div>
</section>
</body>
</html>
标签:pup rcu aic oval ott ios1 rac gtid bgp
原文地址:http://www.cnblogs.com/yanloveyue/p/7291611.html