抱歉缺少信息,出于某种原因,我认为在 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/
再次抱歉,沟通不畅,
鳍条