html图片旋转代码_HTML设计一个小程序
2. 鼠標(biāo)移動到圖片山旋轉(zhuǎn)停止;
3.風(fēng)車的轉(zhuǎn)速可以調(diào)節(jié)
實現(xiàn)代碼如下
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>風(fēng)車</title>
<style>
.one{
width: 100%;
height: 750px;
}
.two{
width: 300px;
height: 300px;
position: absolute;
top: 180px;
left: 367px;
}
.three{
width: 200px;
height: 200px;
position: absolute;
top: 440px;
left: 680px;
}
.four{
width: 150px;
height: 150px;
position: absolute;
top: 400px;
left: 920px;
}
.d1{
animation: xz 2s infinite linear;
}
.d1:hover{
animation-play-state: paused;
}
@keyframes xz {
form {
transform: rotate(0);
}
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="box">
<img src="./caodi.png" alt=""class="one">
<img src="./fengche.png" alt="" class="two d1">
<img src="./fengche.png" alt="" class="three d1">
<img src="./fengche.png" alt="" class="four d1">
</div>
</body>
</html>
結(jié)果圖:
總結(jié)
以上是生活随笔為你收集整理的html图片旋转代码_HTML设计一个小程序的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mysql 双冒号_jdk8新特性之双冒
- 下一篇: xa协议 mysql_分布式事务XA实现