這裏是你的要求:
jsFiddle Demo
<div id="div1">rterterrt
teteterrtetre<div id="div2">
</div></div>
。
#div1{
position: absolute;
top: 50%;
left: 50%;
margin-left:-100px;
/*margin-top: 420px;*/
width: 158px;
height: 158px;
}
#div2{
/*margin-top: 420px;*/
width: 158px;
height: 158px;
background-image:url(http://www.commentsyard.com/cy/01/6474/Mixed%20Flowers%20and%20a%20Bear.jpg);
}
#div2:hover {
-webkit-animation-name: rotate;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: rotate;
-moz-animation-duration: 2s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
}
@-webkit-keyframes rotate {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
這使整個div旋轉。 –
從用戶請求到我的結果有什麼不同? – yossi
'div'可能包含他不想旋轉的文本內容。在這種情況下,您需要將內容包裝在一個'div'(或另一個標籤)中並將其旋轉到相反的方向*或*使用絕對定位的僞元素的背景來覆蓋div並旋轉僞元素代替。 – Ana