0

我知道 ie8 与 css3 的很多内容不兼容。对于这个动画,是否有办法让 ie8 中的动画仍然有效?比如一个额外的jQuery片段?

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

4

1 回答 1

2

你可以很好地使用 jQuery 的.animate()方法。

$('#clickme').click(function() {
  $('#book').animate({
    opacity: 0.25,
    left: '+=50',
    height: 'toggle'
  }, 5000, function() {
    // Animation complete.
  });
});
于 2012-09-18T13:33:10.560 回答