Forums

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

Home Forums CSS Can I get such css3 animation to work in Internet Explorer, Opera, and such browsers?

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #38401
    MarkTopper
    Member

    Can I get such css3 animation to work in Internet Explorer, Opera, and such browsers?

    .something {
    -webkit-animation-name: Bang-Down;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-delay: 0;
    -webkit-animation-play-state: running;
    -moz-animation-name: Bang-Down;
    -moz-animation-duration: 1.5s;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-iteration-count: 1;
    -moz-animation-delay: 0;
    -moz-animation-play-state: running;
    }
    @-webkit-keyframes Bang-Down {
    0% {
    margin-top: -350px;
    opacity: 1;
    }
    90% {
    margin-top: -5px;
    }
    100% {
    margin-top: 0px;
    opacity: 1;
    }
    }
    @-moz-keyframes Bang-Down {
    0% {
    margin-top: -350px;
    opacity: 1;
    }
    90% {
    margin-top: -5px;
    }
    100% {
    margin-top: 0px;
    opacity: 1;
    }

    #104030
    Paulie_D
    Member
    #104042
    MarkTopper
    Member

    Okay. Thanks a lot.

    Can this then be done by Javascript or something?
    So that I could run a javascript to make the css animations for the browsers which doesn’t support css animations.

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