Reputation: 17
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
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