盾牌飞入效果

93 阅读1分钟

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | ```

盾牌飞入 *{ margin: 0; padding: 0; } body{ background-color: skyblue; } .wrap{ width: 480px; margin:0 auto; height: 494px; /* background-color: red; */ } img{ transition: transform 1s; } /* 移动前三张图 2d转化 平移 transform:translate(x,y) 旋转*/ .wrap img:nth-child(1){ transform: translate(-200px,200px) rotate(45deg); } .wrap img:nth-child(2){ transform: translate(-500px,300px) rotate(65deg); } .wrap img:nth-child(3){ transform: translate(200px,400px) rotate(85deg); } /* 当鼠标进入到wrap容器中时,让图片的位置以及旋转还原 */ .wrap:hover img{ transform: none; }
| :---------------------------------------------------------------------------------------------------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------