我很新,所以請詳細解釋。 我正在使用Lightbox 2 jQuery文件,以及另一個jQuery文件在我的圖像上執行菜單幻燈片動畫和淡入淡出動畫。 我假設兩個jQuery文件之間存在衝突,但我不確定如何解決它。Javascript燈箱2問題
有什麼建議嗎?我讀了一些關於jQuery.noConflict()的內容,但我不知道如何實現它,或者它是否可以工作。
<script src="../Scripts/jquery-2.0.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('div#ScrollBox img').animate({
opacity:.5
});
$('div#ScrollBox img').hover(function(){
$(this).stop().animate({opacity:1}, 'fast');
}, function(){
$(this).stop().animate({opacity:.5}, 'slow');
});
});
</script>
<!--LIGHTBOX-->
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/lightbox-2.6.min.js"></script>
<link href="css/lightbox.css" rel="stylesheet" />
你能描述一下你得到的結果,並給出你使用的另一個插件的名字嗎? – Dan
嗨丹。 添加了代碼。我的燈箱在一個新窗口中打開了圖像,而不是一個背景變暗的彈出窗口。 –