源代码如下
这里主要是使用css动画属性和3d旋转
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
ul,li{
padding: 0;
margin: 0;
list-style: none;
}
body{
perspective:1000px;
}
ul{
position: relative;
width: 200px;
height:300px;
margin:150px auto;
transform-style: preserve-3d;
animation: move 10s linear infinite;
}
li{
position: absolute;
top: 0;
left: 0;
width:200px;
height:300px;
}
@keyframes move{
0%{
transform: rotateY(0);
}
100%{
transform: rotateY(360deg);
}
}
ul li:nth-child(1){
transform:rotateY(0) translateZ(300px);
}
ul li:nth-child(2){
transform:rotateY(60deg) translateZ(300px);
}
ul li:nth-child(3){
transform:rotateY(120deg) translateZ(300px);
}
ul li:nth-child(4){
transform:rotateY(180deg) translateZ(300px);
}
ul li:nth-child(5){
transform:rotateY(240deg) translateZ(300px);
}
ul li:nth-child(6){
transform:rotateY(300deg) translateZ(300px);
}
li img{
width:200px;
height:300px;
}
</style>
</head>
<body>
<ul>
<li>
<img src="../h5css3/image/780.jfif" alt="">
</li>
<li>
<img src="../h5css3/image/780.jfif" alt="">
</li>
<li>
<img src="../h5css3/image/780.jfif" alt="">
</li>
<li>
<img src="../h5css3/image/780.jfif" alt="">
</li>
<li>
<img src="../h5css3/image/780.jfif" alt="">
</li>
<li>
<img src="../h5css3/image/780.jfif" alt="">
</li>
</ul>
<div>
</div>
</body>
</html>
今天的文章利用css3写一个旋转木马分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/21263.html