css实现旋转相册

6 篇文章 0 订阅
个人博客链接http://kingsman96.top/home  欢迎来访!!!!
1、html代码
<ul>
  <li><img src="images/m1.jpg"/></li>
  <li><img src="images/m2.jpg"/></li>
  <li><img src="images/m5.jpg"/></li>
  <li><img src="images/m6.jpg"/></li>
  <li><img src="images/mm2.jpg"/></li>
  <li><img src="images/mm4.jpg"/></li>
</ul>

2、css代码

ul{
width: 200px;
height: 200px;
margin: 200px auto;
position: relative;
transform-style: preserve-3d;
animation: lws 5s infinite linear;
}
ul li{
list-style: none;
width: 200px;
height: 200px;
text-align: center;
line-height: 200px;
position: absolute;
}
ul li img{
width: 200px;
height: 200px;
}
ul li:nth-child(1){
background: red;
transform: rotateY(60deg) translateZ(200px);
}
ul li:nth-child(2){
background-color: purple;
transform: rotateY(120deg) translateZ(200px);
}
ul li:nth-child(3){
background-color: blue;
transform: rotateY(180deg) translateZ(200px);
}
ul li:nth-child(4){
background-color: orangered;
transform: rotateY(240deg) translateZ(200px);
}
ul li:nth-child(5){
background-color: yellow;
transform: rotateY(300deg) translateZ(200px);
}
ul li:nth-child(6){
background-color: cyan;
transform: rotateY(360deg) translateZ(200px);
}
@keyframes lws{
from{
transform: rotateX(-20deg) rotateY(0deg);
}
to{
transform: rotateX(-20deg) rotateY(360deg);
}
}
ul:hover{
animation-play-state: paused;
}
ul:hover li img{
opacity: .8;
}
ul li:hover img{
opacity: 1;
}

3、效果展示图

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值