旋转动画
为什么我写的他不是慢慢滑进来的而是直接进来的?transition:all 0.5s这个我也写了。。
为什么我写的他不是慢慢滑进来的而是直接进来的?transition:all 0.5s这个我也写了。。
2017-02-16
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>V小队出品,可随时私聊~</title>
<style type="text/css">
#div{
width: 500px;
height: 500px;
background: darkcyan;
margin: 20px auto;
position: relative;
}
.box{
width: 80%;
height: 80%;
border: 4px solid white;
position: absolute;
top:10%;
left:10%;
transition: all 0.35s;
transform: translate(0,-460px);
/*平移加旋转*/
/*transform: translate(0,-460px) rotate(0deg);*/
}
#div:hover .box{
transform: translate(0,0) ;
/*平移加旋转*/
/*transform: translate(0,0) rotate(180deg);*/
}
</style>
</head>
<body>
<div id="div">
<div class="box"></div>
</div>
</body>
</html>
可参考下~欢迎采纳~谢谢~不懂可私聊~
举报