Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Can I get such css3 animation to work in Internet Explorer, Opera, and such browsers?
#1
Can I get such css3 animation to work in Internet Explorer, Opera, and such browsers?
Code:
.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;
  }
Reply
#2
I guess.. I mean, why not?
It's not supported?
PHP Code:
while(posting) {
    
postCount++;
    
happiness++;

Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [MyBB] CSS3 Buttons Galaxy 0 631 10-24-2014, 09:50 AM
Last Post: Galaxy
  Problems with PNG Animation Mark Topper 1 609 07-14-2012, 05:36 PM
Last Post: 'Snorlax
  CSS Transparency-All Browsers xXWolfyXx 1 602 11-13-2009, 02:16 AM
Last Post: Grizzly
  [javascript] DHTML image animation zone 2 976 11-06-2009, 07:52 AM
Last Post: zone

Forum Jump:


Users browsing this thread: 1 Guest(s)