码迷,mamicode.com
首页 > 其他好文 > 详细

多个transform 属性案例

时间:2018-12-27 03:29:39      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:src   案例   images   ima   idt   image   class   form   pre   

<style>
*{
padding: 0;
margin: 0;
}
body{
background-color: #31965b;
}
.box{
width: 440px;
margin:100px auto;
}
.box>img{
transition: transform 1s;
}
.box>img:nth-of-type(1){
transform:translate(100px,100px) rotate(30deg);
}
.box > img:nth-of-type(2){
transform: translate(-100px,-100px) rotate(-30deg);
}
.box > img:nth-of-type(3){
transform: translate(200px,200px) rotate(60deg);
}
.box > img:nth-of-type(4){
transform: translate(-200px,-200px) rotate(-60deg);
}
.box > img:nth-of-type(5){
transform: translate(150px,150px) rotate(90deg);
}
.box > img:nth-of-type(6){
transform: translate(50px,150px) rotate(-90deg);
}
.box > img:nth-of-type(7){
transform: translate(-150px,-150px) rotate(60deg);
}
.box > img:nth-of-type(8){
transform: translate(10px,-250px) rotate(-90deg);
}
.box > img:nth-of-type(9){
transform: translate(-250px,10px) rotate(45deg);
}
.box:hover>img{
transform: none;
}
</style>
</head>
<body>
<div class="box">
<img src="images/img/shield_1_01.png" >
<img src="images/img/shield_1_02.png" >
<img src="images/img/shield_1_03.png" >
<img src="images/img/shield_1_04.png" >
<img src="images/img/shield_1_05.png" >
<img src="images/img/shield_1_06.png" >
<img src="images/img/shield_1_07.png" >
<img src="images/img/shield_1_08.png" >
<img src="images/img/shield_1_09.png" >
</div>

多个transform 属性案例

标签:src   案例   images   ima   idt   image   class   form   pre   

原文地址:https://www.cnblogs.com/lujieting/p/10182620.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!