jQuery animate 功能只支持 IE9, Firefox, Chrome 但在 < IE 9 中不支持。有解决办法吗?
/* <![CDATA[ */
$(document).ready(function() {
$(".subSlogan").animate({"opacity": "-=1", top: 0, left: 0 }, 1);
$(".subSlogan").animate({"opacity": "-=1", top: 0, left: 0 }, 1000);
$(".subSlogan").animate({"opacity": "+=1", top: 95, left: 120 }, 1200);
$(".Slogan").animate({"opacity": "-=1", top: 300, right: 0 }, 1);
$(".Slogan").animate({"opacity": "-=1", top: 300, right: 0 }, 2000);
$(".Slogan").animate({"opacity": "+=1", top: 153, left: 180 }, 1200);
$(".Schweizerkreuz").animate({"opacity": "-=1", top: 155, left: 795 }, 1);
$(".Schweizerkreuz").animate({"opacity": "-=1", top: 155, left: 795 }, 3500);
$(".Schweizerkreuz").animate({"opacity": "+=1", top: 155, left: 795 }, 1200);
$("#logoBox").animate({"opacity": "-=1", top: -250 }, 1);
$("#logoBox").animate({"opacity": "-=1", top: -250 }, 4000);
$("#logoBox").animate({"opacity": "+=1", top: 0 }, 1200);
});
/* ]]> */