据我所知,ie8与css3不兼容。对于这个动画有一个解决方案仍然有动画工作ie8?比如一个额外的jQuery片段?
http://webapps.easy2.com/ce/ext1104/messages/iris_messages.html
答案 0 :(得分:2)
你可以很好地使用jQuery的.animate()
方法。
$('#clickme').click(function() {
$('#book').animate({
opacity: 0.25,
left: '+=50',
height: 'toggle'
}, 5000, function() {
// Animation complete.
});
});