css3旋轉軸心
阿新 • • 發佈:2019-02-02
* {
padding:0;
margin:0;
}
.pkbox {
width:155px;
height:219px;
position:relative;
margin:300px auto;
}
.pkbox > img {
width:100%;
height:100%;
position:absolute;
left:0;
top:0;
/*新增過渡*/
transition:transform 2s;
/*設定旋轉軸心*/
transform-origin :right top;
}
/*新增滑鼠上移的效果*/
.pkbox:hover >img:nth-of-type(1) {
transform:rotate(60deg);
}
.pkbox:hover >img:nth-of-type(2) {
transform:rotate(120deg);
}
.pkbox:hover >img:nth-of-type(3) {
transform:rotate(180deg);
}
.pkbox:hover >img:nth-of-type(4) {
transform:rotate(240 deg);
}
.pkbox:hover >img:nth-of-type(5) {
transform:rotate(300deg);
}
.pkbox:hover >img:nth-of-type(6) {
transform:rotate(360deg);
}