Forums

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

Home Forums CSS Rotate Transition not working

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #156578
    Attila Hajzer
    Participant

    http://codepen.io/attilahajzer/pen/nDmyq

    i can’t get the transition for rotate to work. it rotates, but doesn’t apply the transition.

    #156581
    magicspon
    Participant

    This should work:

    transition: all .40s ease;

    Not sure if by targeting everything in the transition will cause any other issues with changing properties… I tried it out in the codepen link and it worked.

    #156657
    demianpt
    Participant

    I´ve added this to the nav#title css it works perfectly for me

    nav #title{-webkit-transition:all 0.3s ease; -moz-transition:all 0.3s ease; -o-transition:all 0.3s ease; transition:all 0.3s ease; }

    Greetings

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