jquery 循环插件,缩略图可滚动

发布于 2024-12-16 21:34:42 字数 69 浏览 2 评论 0原文

我正在尝试将循环 jQuery 插件集成到我的应用程序中,但我需要使缩略图从左侧和右侧滚动。有没有办法配置缩略图的滚动方向?

I am trying to integrate the cycle jQuery plugin in my application but i need to make the thumbnails scroll from the left and from the right. Is there a way to configure the scroll direction of the thumbnails?

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

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

发布评论

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

评论(1

戏蝶舞 2024-12-23 21:34:42

这是一个向左滚动的 jsFiddle
http://jsfiddle.net/fUNnJ/

这里是 HTML

<div class="slideshow">
    <img src="http://cloud.github.com/downloads/malsup/cycle/beach1.jpg" width="200" height="200" />
    <img src="http://cloud.github.com/downloads/malsup/cycle/beach2.jpg" width="200" height="200" />
    <img src="http://cloud.github.com/downloads/malsup/cycle/beach3.jpg" width="200" height="200" />
    <img src="http://cloud.github.com/downloads/malsup/cycle/beach4.jpg" width="200" height="200" />
    <img src="http://cloud.github.com/downloads/malsup/cycle/beach5.jpg" width="200" height="200" />
</div>

JS

$(document).ready(function() {
    $('.slideshow').cycle({
        fx: 'scrollLeft'
    });
});

或者你可以用它来向右滚动。

$(document).ready(function() {
    $('.slideshow').cycle({
        fx: 'scrollRight'
    });
});

转到此处查看所有转换 http://jquery.malsup.com/cycle/begin.html

Here is a jsFiddle scrolling left
http://jsfiddle.net/fUNnJ/

here is the HTML

<div class="slideshow">
    <img src="http://cloud.github.com/downloads/malsup/cycle/beach1.jpg" width="200" height="200" />
    <img src="http://cloud.github.com/downloads/malsup/cycle/beach2.jpg" width="200" height="200" />
    <img src="http://cloud.github.com/downloads/malsup/cycle/beach3.jpg" width="200" height="200" />
    <img src="http://cloud.github.com/downloads/malsup/cycle/beach4.jpg" width="200" height="200" />
    <img src="http://cloud.github.com/downloads/malsup/cycle/beach5.jpg" width="200" height="200" />
</div>

the JS

$(document).ready(function() {
    $('.slideshow').cycle({
        fx: 'scrollLeft'
    });
});

or you could use this to scroll Right.

$(document).ready(function() {
    $('.slideshow').cycle({
        fx: 'scrollRight'
    });
});

Go here for all transitions http://jquery.malsup.com/cycle/begin.html

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