所以我几天前发布了试图获得帮助,了解如何实现没有冲突。感谢@tdanielcox帮助我。我正确地实现了它,但它似乎导致灯箱中的问题在没有实现冲突之前正常工作。
这是不使用冲突的页面。
http://michaelcullenbenson.com/MichaelCullenBenson.com/index2.html
灯箱处于每个图像的悬停状态,单击放大镜。
这个页面是在没有实施冲突之前的,并且有一个功能正常的灯箱版本,但是底部的运球反应中断,没有冲突。
http://michaelcullenbenson.com/MichaelCullenBenson.com/index.html
如果我删除jquery 1.6.1,灯箱会继续相应地运行。与lightbox一起使用的唯一jquery文件是(jquery.magnific-popup.js)但不需要1.6.1 jquery库,所以我很困惑为什么它会影响它。
这是jquery没有冲突的标记。非常感谢您的帮助!不知道我多么欣赏它。
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.innerfade.js"></script>
<script type="text/javascript">
$(document).ready(
function(){
$('#news').innerfade({
animationtype: 'slide',
speed: 600,
timeout: 6000,
type: 'random',
containerheight: '1em'
});
});
</script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="utilcarousel-files/utilcarousel/jquery.utilcarousel.min.js"></script>
<script src="utilcarousel-files/magnific-popup/jquery.magnific-popup.js"></script>
<script src="js/responsive-nav.js"></script>
<script>
$(function() {
$('#fullwidth').utilCarousel({
breakPoints : [[600, 1], [800, 2], [1000, 3], [1300, 4],],
mouseWheel : false,
rewind : true,
autoPlay : true,
pagination : false
});
$('#fullwidth2').utilCarousel({
breakPoints : [[600, 1], [800, 2], [1000, 3], [1300, 4],],
mouseWheel : false,
rewind : true,
autoPlay : true,
pagination : false
});
});
</script>
< script >
$(document).ready(function() {
var movementStrength = 25;
var height = movementStrength / $(window).height();
var width = movementStrength / $(window).width();
$("#aboutarea").mousemove(function(e){
var pageX = e.pageX - ($(window).width() / 2);
var pageY = e.pageY - ($(window).height() / 2);
var newvalueX = width * pageX * -1 - 25;
var newvalueY = height * pageY * -1 - 50;
$('#aboutarea').css("background-position", newvalueX+"px "+newvalueY+"px");
});
});
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script>var $j6 = jQuery.noConflict();</script>
<script type="text/javascript" src="dribbble.js"></script>
<script type="text/javascript">
$j6(function () {
$j6('#user').dribbble({
player: 'MCBDesign',
total: 1
});
});
</script>
答案 0 :(得分:0)
您是否尝试过var $j6 = jQuery.noConflict(true);
?