私はこれにかなり慣れていないので、説明を徹底してください。Lightbox 2 jQuery ファイルと別の jQuery ファイルを使用して、画像のメニュー スライド アニメーションとフェード アニメーションを実行しています。2 つの jQuery ファイル間に競合があると想定していますが、解決方法がわかりません。
何かアドバイス?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" />