2

我希望我的动画工作的网站在我的任何标签之前添加了#user-space。所以,我的动画是这样的:

   #user-space @-webkit-keyframes animation-name {
 from {
   style definition ["Before"-state]
 }
 to {
   style definition ["After"-state]
 }

并且那个#user-space 声明破坏了css 语句并且动画不起作用。有没有办法,否则这样做?例如,把我的关键帧放在里面 -webkit-animation: animation-name 1.1s ease infinite;就像 webkit-animation: from { style definition ["Before"-state] } to { style definition ["After"-state] } 1.1s ease infinite;

4

1 回答 1

0

我看到的解决方案是解决您的问题并使用 javascript 来解决。

只需style在您的 html 文件中(在标题中)添加一个新的并在其中添加@-webkit-keyframes动画。

有一个线程很好地解释了它(参见接受的解决方案):Set the webkit-keyframes from/to parameter with JavaScript

于 2012-11-20T08:11:21.767 回答