Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Circular Animation

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #151474
    Junni
    Participant

    am trying to give this image a circular animation but all in vain please help

    CHeck it

    #151537
    Eric Gregoire
    Participant

    I didn’t see anything defining an animation called “rotate.”

    @-webkit-keyframes rotate {
      from {
        -webkit-transform: rotate(0deg);
      }
      to { 
        -webkit-transform: rotate(360deg);
      }
    }
    

    This will define the keyframes for the animation from 0 to 360 degrees (or full rotation).

    http://codepen.io/Boogiesox/pen/Hgidy

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.