简单的挂钟模拟

来源:互联网 发布:mysql唯一约束默认1 编辑:程序博客网 时间:2024/04/27 19:49
</head>
<style>
#continer{
width:400px;
height:400px;
border:3px solid red;
border-radius:50%;
position:relative;

}
#hour{
height:100px;
width:10px;
background:blue;
position:absolute;
left:195px;
top:100px;
}
#minute{
height:150px;
width:6px;
background:blue;
position:absolute;
left:197px;
top:50px;
transform-origin:center bottom;
transition:transform 60s linear;
}
#minute:hover{
transform:rotate(360deg);
}
</style>
<body>
<div id="continer">
<div id="hour"></div>
<div id="minute"></div>
</div>
</body>
</html>
0 0
原创粉丝点击