Forums

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

Home Forums CSS CSS3 webkit animation

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #27276
    gregorym
    Member

    Hi,
    I’ve made a very simple webkit animation that move an element to a fixed position. But my problem is that at the end of the animation the lement goes back to his origin position. How can I avoid this?


    @-webkit-keyframes move-element {
    0% {
    }
    100% {
    top: 100px;
    left: 100px;
    }
    }

    #greg {
    -webkit-animation: move-element 2s ease-in-out 1 alternate;
    }

    Greg

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