0
工作非常大,所以我在這個網站運行的動畫:http://www.pivot-innovation.com/index_dev.phpJQuery的動畫的問題,在所有其他瀏覽器
一切都在尋找,並在每個瀏覽器工作正常。當然除了IE。起初它告訴我,從谷歌調用jquery有一個錯誤...所以我把本地jQuery的完整版本,現在我可以打電話了。我的腳本很簡單,但它不會動畫或淡入淡出,或者只是在IE中。
<script type="text/javascript" src="js/jquery.js"></script>
<script>
$(document).ready(function() {
$("#left_innovation_image").hide(); //Hide all content
$("#right_innovation_image").hide(); //Hide all content
$("#mainImage_home").hide(); //Hide all content
$("#left_innovation_image").fadeIn(2000); //Show first tab content
$("#right_innovation_image").fadeIn(2000); //Show first tab content
$("#left_innovation_image").animate({position:'absolute', top:'0px', left:'50px'}, 1000)
$("#right_innovation_image").animate({position:'absolute', top:'0px', right:'50px'}, 1000,
function(){
}
)
$("#mainImage_home").delay(2500).fadeIn(1000); //Show first tab content
});
</script>
我甚至試過絕對位置玩,只是簡單的動畫留下這樣的:
$("#left_innovation_image").animate({'left': '+=50px'}, 1000)
,它仍然無法正常工作或移動。任何想法如何解決這一問題?如果沒有,我可以寫些東西,只是告訴IE瀏覽器顯示圖像,並忘記jQuery。
哪個版本的IE您使用搗鼓呢? –
我會建議在你的'animate()'行的末尾添加分號。 – Spudley