如何为元素的“变换:旋转”设置动画?

发布于 2024-11-16 18:02:00 字数 505 浏览 3 评论 0原文

理论上,以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝眼泪 2024-11-23 18:02:00

解决了。我有这个测试用例:

<div>anim only this: <span class="test">+</span></div>

仅适用于添加以下内容:

.test { display: inline-block; }

Solved. I had this test-case:

<div>anim only this: <span class="test">+</span></div>

Only worked with adding this:

.test { display: inline-block; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文