How to dynamically create '@-Keyframe' CSS animations?

前端 未结 9 1242
误落风尘
误落风尘 2020-11-27 03:42

I have a requirement to rotate a div and stop at a particular position ( The value will be received from the server).

I tried native JS to rotate and stop but it is

9条回答
  •  感情败类
    2020-11-27 04:16

    well i don't think it is easy to create dynamic @keyframes they are inflexible because they must be hard-coded.

    Transitions are a little easier to work with, as they can gracefully respond to any CSS changes performed by JavaScript.

    However, the complexity that CSS transitions can give you is pretty limited — an animation with multiple steps is difficult to achieve.

    This is a problem that CSS @keyframe animations are meant to solve, but they don’t offer the level of dynamic responsiveness that transitions do.

    but these links might help you

    Link1 : a tool that generates a @-webkit-keyframe animation with many tiny steps. This opens the door to an unlimited selection of easing formula.

    Link2 it will be a great help for you to take it as a base as it provides a UI to create animations and exports it to CSS code.

    I guess this solution will definitely work for you. Its is used for dynamic keyframes

提交回复
热议问题