ScrollByY jScrollPane

发布于 2024-11-04 19:55:50 字数 640 浏览 0 评论 0原文

尝试将带有像素数量的scrollByY分配给jscrollPane的实例。我将它与 Galleria 结合使用,并且必须将其添加到 Galleria 文件的末尾才能使其正常工作。下面的代码:

        this.bind('loadfinish', function(e) {
        this.$('loader').fadeOut(200);
        $('.galleria-thumbnails-container').jScrollPane({showArrows:true, animateScroll:true});});

似乎无法让它工作。我尝试使用网站上的代码:

var element = $('.galleria-thumbnails-container').jScrollPane({scrollByY(200)});
var api = element.data('jsp');

但这似乎不起作用:( 有帮助吗?

这是该页面的链接: http://orangepxl.com/veronica/galleries.php

Trying to just assign scrollByY with a pixel amount to an instance of jscrollPane. I'm using it in conjunction with Galleria, and had to add it to the end of the galleria file in order for it to work. code below:

        this.bind('loadfinish', function(e) {
        this.$('loader').fadeOut(200);
        $('.galleria-thumbnails-container').jScrollPane({showArrows:true, animateScroll:true});});

can't seem to get it to work. I tried using the code from the site:

var element = $('.galleria-thumbnails-container').jScrollPane({scrollByY(200)});
var api = element.data('jsp');

but that didn't seem to work :( Any help?

Here's a link to the page:
http://orangepxl.com/veronica/galleries.php

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

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

发布评论

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

评论(1

临走之时 2024-11-11 19:55:50
    $(function()
{
var pane = $('.galleria-thumbnails-container');
pane.jScrollPane(
    {
        showArrows: true,
        animateScroll: true
    }
);
var api = pane.data('jsp');

$('.jspArrow').bind(
    'click',
    function()
    {
        api.scrollByY(200);
        return false;
    }
);
});
    $(function()
{
var pane = $('.galleria-thumbnails-container');
pane.jScrollPane(
    {
        showArrows: true,
        animateScroll: true
    }
);
var api = pane.data('jsp');

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