Htlm怎么实现鲜花盛开动态图效果
本篇内容主要讲解"Htlm怎么实现鲜花盛开动态图效果",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"Htlm怎么实现鲜花盛开动态图效果"吧!
*{margin:0;padding:0;list-style-type:none;}
#box{
width:1000px;
height:550px;
margin:0 auto;
margin-top:50px;
position:relative;
}
.box01,.box02,.box03,.box04,.box05,.box06,.box07,.box08,.box09{
width:300px;
height:300px;
border-radius:300px 0;
background:pink;
opacity:0.6;
position:absolute;
bottom:100px;
left:500px;
transform-origin:0 300px;
transform:rotate(-45deg);
transition:all 8s;
}
#box:hover :nth-child(3){
transform:rotate(-23deg);
}
#box:hover :nth-child(4){
transform:rotate(0deg);
}
#box:hover :nth-child(5){
transform:rotate(23deg);
}
#box:hover :nth-child(6){
transform:rotate(45deg);
}
#box:hover :nth-child(7){
transform:rotate(-68deg);
}
#box:hover :nth-child(8){
transform:rotate(-90deg);
}
#box:hover :nth-child(9){
transform:rotate(-113deg);
}
#box:hover :nth-child(10){
transform:rotate(-135deg);
}
到此,相信大家对"Htlm怎么实现鲜花盛开动态图效果"有了更深的了解,不妨来实际操作一番吧!这里是网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!