我知道 ie8 与 css3 的很多内容不兼容。对于这个动画,是否有办法让 ie8 中的动画仍然有效?比如一个额外的jQuery片段?
http://webapps.easy2.com/ce/ext1104/messages/iris_messages.html
我知道 ie8 与 css3 的很多内容不兼容。对于这个动画,是否有办法让 ie8 中的动画仍然有效?比如一个额外的jQuery片段?
http://webapps.easy2.com/ce/ext1104/messages/iris_messages.html
你可以很好地使用 jQuery 的.animate()
方法。
$('#clickme').click(function() {
$('#book').animate({
opacity: 0.25,
left: '+=50',
height: 'toggle'
}, 5000, function() {
// Animation complete.
});
});