<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.box {
width: 200px;
height: 150px;
border: 1px solid pink;
margin: 250px auto;
position: relative;
}
.box img {
width: 100%;
height: 100%;
position: absolute;
/*控制元素中心点*/
transform-origin: right top;
transition: 1s;
}
.box:hover img:first-child {
transform: rotateZ(60deg);
}
.box:hover img:nth-child(2) {
transform: rotateZ(120deg);
}
.box:hover img:nth-child(3) {
transform: rotateZ(180deg);
}
.box:hover img:nth-child(4) {
transform: rotateZ(240deg);
}
.box:hover img:nth-child(5) {
transform: rotateZ(300deg);
}
.box:hover img:nth-child(6) {
transform: rotateZ(360deg);
}
</style>
</head>
<body>
<div class="box">
<img src="images/6.jpg" alt="">
<img src="images/5.jpg" alt="">
<img src="images/4.jpg" alt="">
<img src="images/3.jpg" alt="">
<img src="images/2.jpg" alt="">
<img src="images/1.jpg" alt="">
</div>
</body>
</html>
CSS3-2D转换
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- CSS3 2D转换 通过 2D 转换,我们能够对元素进行移动、缩放、转动、拉长或拉伸。 Internet Expl...
- 2D转换:transform 1、旋转 rotate(45deg) 45deg表示是旋转45度格式:{trans...