Can you change CSS3 animation keyframe attributes inline (i.e. in the HTML style attribute)?

后端 未结 6 1625
别跟我提以往
别跟我提以往 2020-12-31 03:01

Is it possible to change the animation keyframe attributes by making inline adjustments.

Take for example

@-moz-keyframes slidein {
    from {
               


        
6条回答
  •  忘掉有多难
    2020-12-31 03:12

    No. since the animation is not declared in the element, it's only called upon it. It's like trying to add methods into an object instead of to a class. Not possible, sorry ;)

提交回复
热议问题