jScrollPane safari 闪烁问题
我正在使用 jScrollPane 来显示动态内容。 http://dev.harvest.sugarshaker.com/#interview20 ...点击 '打开成绩单'
它在 mac firefox 上工作正常,但 mac safari 滚动时会闪烁。我什至还没有在电脑上检查过!我认为这是一个 CSS 问题,可能与我添加的隐藏转录面板的剪切区域有关。
这是滚动窗格的创建方式:
var api = null;
$(function() {
var pane = $('#transcript');
pane.jScrollPane();
api = pane.data('jsp');
});
然后......
api.getContentPane().html(data.transcript);
api.reinitialise();
任何人都可以帮忙吗?
非常感谢,
罗布。
i'm using a jScrollPane for dynamic content.
http://dev.harvest.sugarshaker.com/#interview20 ...click on 'open transcript'
it works fine on mac firefox, but mac safari flickers when scrolled. i've not even checked on a pc yet! i think its a css issue, and possibly something to do with the clipping region i've added, to hide the transcipt panel.
here's how the scroll pane is created:
var api = null;
$(function() {
var pane = $('#transcript');
pane.jScrollPane();
api = pane.data('jsp');
});
then later on...
api.getContentPane().html(data.transcript);
api.reinitialise();
can anyone help?
many thanks,
rob.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 OSX / Safari 中遇到了同样的问题,并通过更新到最新版本(v2.0.0beta12 - 2012-09-27)解决了它。
尽管版本号与Safari中存在缺陷的版本相同,但版本日期和脚本内容不同,现在运行顺利。
I had the same issues in OSX / Safari and solved it by updating to the latest version (v2.0.0beta12 - 2012-09-27).
Even though the version number was the same as the one with flaws in Safari, the version date and script's content were different and it now runs smoothly.