垂直旋转木马 jquery 或 javascript 连续

发布于 2024-10-25 12:21:31 字数 242 浏览 5 评论 0原文

我需要一个垂直旋转木马来显示一些内容,例如最新新闻。我需要无限,没有鼠标帮助......一切都是自动的。 请我需要立即帮助!有人知道我在哪里可以找到类似的东西吗?

谢谢:)

重述问题:

我需要类似盒子的东西:http://www.dealextreme 中的“最近订单”。 com/ .... 位于右侧底部。

i need a vertical carrousel to show some things like Lastest NEWS. And i need to be infinite and no mouse help... all automaticaly.
please i need inmediate help!, somebody knows where can i find something like that?

Thanks :)

REMAKE OF THE QUESTION:

i need something like the box: "recent orders" in http://www.dealextreme.com/ .... is in the bottom at the right.

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

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

发布评论

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

评论(3

暮年 2024-11-01 12:21:31

使用jCarousel。您可以将垂直循环,以及 自动滚动选项。


编辑:这里有一个演示来帮助您入门。

HTML

<div id="mycarousel"> 
    <ul> 
        <li><h3>News Item 1</h3><a>Link 1</a></li>
        <li><h3>News Item 2</h3><a>Link 2</a></li>
        <li><h3>News Item 3</h3><a>Link 3</a></li>
        <li><h3>News Item 4</h3><a>Link 4</a></li>
        <li><h3>News Item 5</h3><a>Link 5</a></li>
    </ul> 
</div>

JavaScript

$(function() {
    $('#mycarousel').jcarousel({
        vertical: true,
        scroll: 1,
        auto: 2,
        wrap: 'circular'
    });
});

Use jCarousel. You'd combine the vertical, circular, and autoscrolling options.


Edit: here's a demo to get you started.

HTML

<div id="mycarousel"> 
    <ul> 
        <li><h3>News Item 1</h3><a>Link 1</a></li>
        <li><h3>News Item 2</h3><a>Link 2</a></li>
        <li><h3>News Item 3</h3><a>Link 3</a></li>
        <li><h3>News Item 4</h3><a>Link 4</a></li>
        <li><h3>News Item 5</h3><a>Link 5</a></li>
    </ul> 
</div>

JavaScript

$(function() {
    $('#mycarousel').jcarousel({
        vertical: true,
        scroll: 1,
        auto: 2,
        wrap: 'circular'
    });
});
仅冇旳回忆 2024-11-01 12:21:31

查看高度可配置的 http://jquery.malsup.com/cycle/

有垂直滚动/滑动效果。

具体来说,您需要某种类型的分页机制,如演示页面所示:

http://jquery。 malsup.com/cycle/int2.html

jQuery Cycle 非常强大,但它确实有一个学习曲线,您可能必须尝试不同的缓和功能才能获得您需要的东西。

此外,除了图像之外,它还会滚动相当复杂的内容。

Look into http://jquery.malsup.com/cycle/ which is highly configurable.

There is a vertical scrolling/sliding effect.

Specifically, you want some type of paging mechanism such as shown in the demo page:

http://jquery.malsup.com/cycle/int2.html

jQuery Cycle is quite powerful but it does have a learning curve and you may have to experiment with the different easements to get what you need.

Also, it will scroll quite complex content in addition to images.

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