我遇到了问题,我真的希望你们可以提供帮助。
http://ontwikkelomgeving.wijzijnblits.nl/primawonen/ 在这里,您可以找到我目前正在创建的网站。
正如您所看到的那样,autoscroll工作(称为het laatste aanbod)。 这使用了easing.min.js插件。 在导航中我使用lavalamp,但是现在这不起作用。
问题在于缓动插件。如果我使用此插件的旧版本,lavalamp可以正常工作。很棒,你会想,但随后autoscroll脚本不起作用。 我怎样才能使两者都有效?!
我非常认真地坚持这一点,并希望你们能帮助我。
提前thnx答案 0 :(得分:4)
我遇到了同样的问题,我只想找到一种方法让它工作,在lavalamp.js中将以下几行添加到其他所有内容
jQuery.extend( jQuery.easing,
{
bouncein: function(x, t, b, c, d) {
return c - jQuery.easing["bounceout"](x, d - t, 0, c, d) + b;
},
backout: function(x, t, b, c, d) {
var s = 1.70158;
return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
}
});
删除缓动插件。它对我有用。
答案 1 :(得分:1)
我遇到了两个冲突的jquery库同样的问题并找到了这个 http://docs.jquery.com/Using_jQuery_with_Other_Libraries
这种方法对我有用 - 脚本的顺序很重要:
<script src="secondary-jquery-script.js"></script>
<script src="jquery-original-script.js"></script>
<script>
var $j = jQuery.noConflict();
// Here comes the part that needs jquery-Original-script.js - jQuery via $j(...)
$j(document).ready(function(){
$j("div").hide();
});
// and here comes the part that needs the secondary script
$('someid').hide();
</script>