如何为元素的“变换:旋转”设置动画?
理论上,以下 CSS 应该在最新的 Chrome 版本中工作...奇怪的是,不透明度的动画正确,但转换:旋转被忽略。这个不能转行吗?
@-webkit-keyframes offblink {
0% {
-webkit-transform: rotate(45deg);
opacity: 0;
}
50% {
-webkit-transform: rotate(180deg);
opacity: 1;
}
100% {
-webkit-transform: rotate(270deg);
opacity: 0;
}
}
.test {
-webkit-animation-name: offblink;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
The following CSS should theoretically work in the newest Chrome build... strangely enough, the opacity is animated properly but transform:rotate is ignored. Can this not be transitioned?
@-webkit-keyframes offblink {
0% {
-webkit-transform: rotate(45deg);
opacity: 0;
}
50% {
-webkit-transform: rotate(180deg);
opacity: 1;
}
100% {
-webkit-transform: rotate(270deg);
opacity: 0;
}
}
.test {
-webkit-animation-name: offblink;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了。我有这个测试用例:
仅适用于添加以下内容:
Solved. I had this test-case:
Only worked with adding this: