對不起缺乏信息,我對某些人重新考慮ason假設在css3中應用旋轉會爲我製作動畫,不知道從哪裏獲得了這個概念!
我找到了一份工作,將內置在flash中的問卷轉換爲CSS3/jQuery網站,因爲該公司希望在移動設備上提供他們的產品。我遇到的一件事是屏幕左下角的標誌旋轉動畫。我找到了一種方法來使用單獨的類來存儲動畫並在指示時添加它。
jQuery的
$("#signpost").animate({
"left":48,
"bottom":-16
});
$("#signpost").addClass("animaterotation");
CSS
#signpost {
background: url("../imgs/signpost.png");
background-size:cover ;
width:213px ;
height:232px ;
position:absolute;
left:-213px ;
bottom:-4em ;
z-index:999999 ;
cursor:pointer ;
}
.animaterotation {
-webkit-animation-name: rotate;
-webkit-animation-duration: 0.35s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
}
@-webkit-keyframes rotate {
from {
transform-origin:0% 80%;
-ms-transform-origin:0% 80%; /* IE 9 */
-webkit-transform-origin:0% 80%; /* Safari and Chrome */
transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
}
to {
transform: rotate(0deg);
-ms-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
}
}
這裏是原來的鏈接:
http://www.bigambition.co.uk/games/dream-job/
這裏是什麼,我已經建立了一個鏈接:
http://scm.ulster.ac.uk/~B00595392/dreamjobs/
再次, 很抱歉的壞通信,
Finbar
爲什麼你有你的分號之前的空間? –
@JamesDonnelly @罰款無論如何.. -OP *後追加jQuery *我們可以看到你的jQuery? –
@ Mr.Alien它不會造成任何問題,這只是奇怪的做法。 –