当 img src 更改时,jScrollPane contentPane 不会重新初始化

发布于 2025-01-08 15:24:26 字数 947 浏览 0 评论 0原文

我的目标是将各种风景全景图像动态加载到 jScrollPane 容器中并重新初始化,以便根据当前的 img 尺寸重新计算滚动条。

我的问题是,虽然我注入了 img src 然后调用 api.reinitialise() 方法,但它没有更新。因此,img 会加载,但滚动窗格的宽度仍然相同。

我认为这与 jScrollPane 无法及时检索新的 img 尺寸以使用正确的宽度重新初始化有关。

HTML

<div class="px-content">
    <img src="" />
</div>

JS

var scrollPane = $('.px-content').jScrollPane({hideFocus: true, showArrows: true, autoReinitialise: true});
var api = scrollPane.data('jsp');       

 var loadImage = function(id){
            var image, $paneContent, $img;
            imageSource= this.get(id); // returns an image URL



$paneContent = this.jspAPI.getContentPane();
        $img = $paneContent.find('img').attr('src', imageSource);
        api.reinitialise();
    }

loadImage(0); // loads correctly
loadImage(1); // loads img correctly, but pane doesn't refresh to new width

有什么想法吗?很高兴尝试任何事情。

塞布。

My objective is to load dynamically various landscape panoramic images into the jScrollPane container and reinitialise so that the scrollbar would be re-calculated based on the current img dimensions.

My problem is that although I'm injecting the img src and then calling the api.reinitialise() method, it's not updating. Therefore the img loads, but the scrolling pane is still the same width.

I'm assume it has something to do with jScrollPane not being able to retrieve the new img dimensions in time to reinitialise with the right width.

HTML

<div class="px-content">
    <img src="" />
</div>

JS

var scrollPane = $('.px-content').jScrollPane({hideFocus: true, showArrows: true, autoReinitialise: true});
var api = scrollPane.data('jsp');       

 var loadImage = function(id){
            var image, $paneContent, $img;
            imageSource= this.get(id); // returns an image URL



$paneContent = this.jspAPI.getContentPane();
        $img = $paneContent.find('img').attr('src', imageSource);
        api.reinitialise();
    }

loadImage(0); // loads correctly
loadImage(1); // loads img correctly, but pane doesn't refresh to new width

Any ideas? Happy to try anything.

Seb.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文