0
HTMLCSS旋轉變換對象
<div class="camera">
<div class="dreid">
<div class="planet1"></div>
<div class="planet2"></div>
</div>
</div>
CSS
.camera {
width: 300px;
height: 300px;
border: 1px solid black;
-webkit-perspective: 800;
-webkit-perspective-origin: 50% 700px;
}
.dreid {
width:220px;
height:220px;
border-radius: 50%;
border: 1px solid black;
margin: 60px auto;
-webkit-transform: rotateX(45deg);
-webkit-animation-name: spin;
-webkit-animation-duration: 10s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
@-webkit-keyframes spin {
from {
-webkit-transform:rotate(0deg);
}
to {
-webkit-transform:rotate(360deg);
}
}
.planet1 {
position:absolute;
top:0;
left:0;
width:50px;
height:50px;
background:red;
border-radius:50%;
}
.planet2 {
position: absolute;
top:170px;
left:170px;
width:50px;
height:50px;
background:red;
border-radius:50%;
}
,你可以看到我試着旋轉它之前應用的角度來圓(有點像在行星系統)。問題是,動畫位似乎覆蓋了我用-perspective和-transform:rotate設置的轉換位。是否有可能用純CSS完成它?
編輯:JSFiddle
在一個側面說明,如果你想 –
我嘗試添加-transform你可以使用僞元素,而不是內部元素:rotateX我的「旋轉」功能,但導致透視覆蓋紡紗。不知道我是否理解正確。 – poochy
啊回答太快了。是的,這就是我的意思!但我很愚蠢,以至於刪除我在容器中的-transform並將它添加到我的動畫中。非常感謝你! – poochy