jQuery滑块滑动时闪烁问题

发布于 2024-10-29 03:34:04 字数 85 浏览 2 评论 0原文

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

Hey, I've a tricky problem with a slider I've created in jQuery. After finish it I realize that there is a flickering of the sliding images cross-browser (except ie9). I would like to upload the slider but cant find a button, so I post the script here.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

在风中等你 2024-11-05 03:34:04

在 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);
}

},

On jquery js find this code and switch this

// 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);
}

},
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文