IE8没有使用CSS3动画,有什么jQuery替代品吗?

时间:2012-09-18 13:26:28

标签: jquery css3 internet-explorer-8 css-transitions

据我所知,ie8与css3不兼容。对于这个动画有一个解决方案仍然有动画工作ie8?比如一个额外的jQuery片段?

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

1 个答案:

答案 0 :(得分:2)

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

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