滑动时jQuery滑块闪烁问题

时间:2011-04-01 06:49:40

标签: javascript jquery cross-browser flicker

嘿,我在jQuery中创建的滑块有一个棘手的问题。完成后我意识到跨浏览器的滑动图像闪烁(除了ie9)。我想上传滑块但无法找到按钮,所以我在这里发布了脚本。

1 个答案:

答案 0 :(得分:1)

在jquery js上找到这段代码并切换这个

// Simple 'hide' function
hide: function() {
// Remember where we started, so that we can go back to it later
this.options.orig[this.prop] = jQuery.style( this.elem, this.prop );
this.options.hide = true;

// Begin the animation
if ($.browser.msie){
this.custom(this.cur(), 1);
}
else{
this.custom(this.cur(), 0);
}

},