-webkit-transform 如何在保留translate3d()的同时更改rotate()?

发布于 2024-12-15 11:10:29 字数 802 浏览 0 评论 0原文

我想要做的是在元素上运行 css3 动画时更改元素的 translate3d 转换。然而,当我尝试执行此操作时,动画似乎每次在更新动画之前都会重置变换,以便平移始终为 (0,0,0)。我希望动画运行并且仍然能够使用 javascript 对其进行翻译,例如:

element.style.webkitTransform='translate3d(100px, 30px, 0px)';

我知道可以通过使用第二个包含 div 来设置翻译,同时内部 div 运行动画,但我希望如果可能的话可以只使用一个div。你知道如何实现这一目标吗?

这是我的CSS:

.class{
   width:32px;
   height:32px;
   position:absolute;
   background: transparent url('./img/sprite.png');
   background-size:100%;
   -webkit-transform: translate3d(48px, 176px, 0px);
   -webkit-transition-property: -webkit-transform;
   -webkit-transition-duration: 100ms;


   -webkit-animation:spin .75s infinite linear;
}

@-webkit-keyframes spin {
    0% { -webkit-transform:rotate(0deg); }
    100% { -webkit-transform:rotate(360deg); }
}

What I am looking to do is change the translate3d transform of an element while a css3 animation is running on the element. When I try to do this, however, it seems that the animation resets the transform every time right before updating the animation such that the translation is always (0,0,0). I wish to have the animation running and still be able to translate it with javascript such as:

element.style.webkitTransform='translate3d(100px, 30px, 0px)';

I know it would be possible by using a second containing div to set the translation on while the inner div runs the animation, but I would like to be able to just use one div if possible. Do you know how to achieve this?

This is my css as it stands:

.class{
   width:32px;
   height:32px;
   position:absolute;
   background: transparent url('./img/sprite.png');
   background-size:100%;
   -webkit-transform: translate3d(48px, 176px, 0px);
   -webkit-transition-property: -webkit-transform;
   -webkit-transition-duration: 100ms;


   -webkit-animation:spin .75s infinite linear;
}

@-webkit-keyframes spin {
    0% { -webkit-transform:rotate(0deg); }
    100% { -webkit-transform:rotate(360deg); }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

留一抹残留的笑 2024-12-22 11:10:29

您可以用空格连接多个转换函数:

-webkit-transform: translate3d(48px, 176px, 0px) rotateY(30deg) rotateX(10deg);

You can concatenate several transformation functions with a space:

-webkit-transform: translate3d(48px, 176px, 0px) rotateY(30deg) rotateX(10deg);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文