我正在寻找一个解决方案来推出 jquery 版本,Drupal 原生包含该版本。它是一个旧版本。实际上没有问题-但是一个:DI使用带有队列假的.animate()函数,并且没有此属性(因为此属性在jquery 1.7中添加到.animate()中),它不是我想要的动画。
代码是:
//When mouse rolls over
$("#login").bind('mouseover mouseenter',function(){
$("#logo").stop().delay(500).animate({top:'-44px'},{queue:false, duration:600, easing: 'swing'})
$("#login").stop().animate({top:'89px'},{queue:false, duration:600, easing: 'easeOutBounce'})
});
//When mouse is removed
$("#login").bind('mouseout mouseleave',function(){
$("#logo").stop().animate({top:'6px'},{queue:false, duration:600, easing: 'easeOutBounce'})
$("#login").stop().animate({top:'40px'},{queue:false, duration:600, easing: 'swing'})
});
也许你能帮我找到解决办法?问题,为什么我要排除我用于此的 jquery 版本(1.8.3)是 Drupal 模块没有显示所见即所得(CKEditor),当 jquery 1.8.3 被额外包含时,不幸的是我不能替换 jquery带有 jquery 1.8.3 的核心版本 :(