首页 > 代码库 > 未完成的开锁动画演示
未完成的开锁动画演示
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>开锁动画</title>
<style type="text/css">
.yuan{
border-radius: 200px;
background-color: aqua;
height: 300px;
width: 300px;
margin: 500px;
border-top: 10px solid red;
border-bottom: 10px solid blue;
border-right: 10px solid blue;
border-left: 10px solid red;
color: white;
font-size: 30px;
transition: all 2s;
position: relative;
}
.yuan:hover{
transform: rotate(180deg);
}
.suo{
height: 200px;
width: 150px;
}
.kaisuo{
position: absolute;
top: 580px;
left: 590px;
}
.kaisuo:hover{
opacity: 0.1;
}
</style>
</head>
<body>
<div class="yuan">
</div>
<div class="kaisuo">
<img src="http://www.mamicode.com/images/suozi.png" class="suo">
</div>
</body>
</html>
效果:鼠标移入边框会旋转180°,图片会虚化,但是现在两者只能选择一种显示,用了个DIV把图片定位到BORDER里的,如果不用的话,图片会和边框一起旋转。
值得改动的地方还有很多,希望在深入学习的过程中能慢慢完善
未完成的开锁动画演示
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。