kpiatak
kpiatak

Reputation: 17

IE8 not working with CSS3 animation, what jQuery alternative is there?

I understand that ie8 is not compatible with a lot that css3 has. For this animation is there a work around to still have the animation work in ie8? Such as an extra snippet of jQuery?

http://webapps.easy2.com/ce/ext1104/messages/iris_messages.html

Upvotes: 0

Views: 1176

Answers (1)

Praveen Kumar Purushothaman
Praveen Kumar Purushothaman

Reputation: 167192

You can very well use jQuery's .animate() method.

$('#clickme').click(function() {
  $('#book').animate({
    opacity: 0.25,
    left: '+=50',
    height: 'toggle'
  }, 5000, function() {
    // Animation complete.
  });
});

Upvotes: 2

Related Questions