jScrollpane Chrome 问题
在 JScrollPane 站点的“已知问题”中,有一个:
在 Webkit 浏览器中 CSS 必须是 包含在 Javascript 之前
我这样做,但有时我仍然遇到(仅在第一页,索引中)一些滚动问题,滚动就消失了,在我再次刷新页面后,一切正常,
我的浏览器缓存是空的,所以不是这样.. 我也尝试使用:
$.ajaxSettings.cache = false;
我用于滚动的代码类似于ajax示例:
$(document).ready(function() {
var api = $('#mydiv').jScrollPane({ showArrows: false, reinitialiseOnImageLoad: true }).data('jsp');
$('.a_link').live('click', function() { ... ....
我该如何解决这个问题?
in the "Known issues" at JScrollPane site, there's a:
In Webkit browsers CSS must be
included before Javascript
i did that but sometimes im still getting (only in the first page, the index) some scroll problems, the scroll just disappears and after i refresh the page again its all ok
my browser cache is empty so is not that..
also i tried using:
$.ajaxSettings.cache = false;
the code im using for my scroll is similar to the ajax example:
$(document).ready(function() {
var api = $('#mydiv').jScrollPane({ showArrows: false, reinitialiseOnImageLoad: true }).data('jsp');
$('.a_link').live('click', function() { ... ....
how can i fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
reinitialiseOnImageLoad
是 jScrollPane 版本 1 中的一项设置,不再执行任何操作。如果您的窗格包含图像,您需要使用以下技术之一:http://jscrollpane.kelvinluck.com /image2.html
http://jscrollpane.kelvinluck.com/image.html
如果这没有帮助,请提供 URL 或在 http://www.jsfiddle.net/ (或者告诉我您是否可以在 jScrollPane 站点上的演示中重现)。
reinitialiseOnImageLoad
is a setting from version 1 of jScrollPane and no longer does anything. If your pane contains images you'll need to use one of these techniques:http://jscrollpane.kelvinluck.com/image2.html
http://jscrollpane.kelvinluck.com/image.html
If that doesn't help please provide a URL or set up an example on http://www.jsfiddle.net/ (or tell me if you can reproduce in the demos on the jScrollPane site).