垂直手风琴内容滑块理想 jQuery

发布于 2024-12-02 14:28:10 字数 434 浏览 0 评论 0原文

我一直在寻找垂直手风琴内容滑块一段时间。我找到了一个: http://www.marghoobsuleman.com/jQuery-common-accordion,而且非常好。我在我的网站 http://www.pixeltrics.com/ 上实现了它

,但有一些事情我不满意。这不是很流畅,即使我将自动延迟时间设置为 4 秒,似乎第一张幻灯片需要更长的时间才能切换到第二张,然后它们开始像每秒一样切换。所以有些事情不太对劲。

有谁知道我可以尝试的另一个垂直手风琴插件?最好是 jQuery 的。

谢谢。

I've been searching for a while for a vertical accordion content slider. I've found one: http://www.marghoobsuleman.com/jQuery-common-accordion, and it's pretty good. I implemented it on my site http://www.pixeltrics.com/

But there are a couple of things I'm not happy with. It's not very smooth, and even though I set the autodelay time to 4 seconds, it seems the first slide takes a lot longer to switch to the second and then they start switching like every second. So something isn't quite right.

Does anyone know of another vertical accordion plug-in I can try? Ideally a jQuery one.

Thanks.

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

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

发布评论

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

评论(3

天煞孤星 2024-12-09 14:28:10

如果单独使用 jQuery 就足够简单了,为什么还要使用插件呢?示例...

HTML

<div class="wrap">
    <div class="heading">Heading</div>
    <div class="body">Body</div>
</div>
<div class="wrap">
    <div class="heading">Heading</div>
    <div class="body">Body</div>
</div>
<div class="wrap">
    <div class="heading">Heading</div>
    <div class="body">Body</div>
</div>

jQuery

$(function() {

    $('.body').hide();              

    $('.heading').hover(function() {

        $(this).next('.body').stop().slideToggle(500);
        $(this).parent().siblings('.wrap').children('.body').stop().slideUp(500);

    }, function() {

        $(this).next('.body').stop().slideToggle(500);

    });
});

Why use a plugin when it's easy enough with jQuery alone? Example...

HTML

<div class="wrap">
    <div class="heading">Heading</div>
    <div class="body">Body</div>
</div>
<div class="wrap">
    <div class="heading">Heading</div>
    <div class="body">Body</div>
</div>
<div class="wrap">
    <div class="heading">Heading</div>
    <div class="body">Body</div>
</div>

jQuery

$(function() {

    $('.body').hide();              

    $('.heading').hover(function() {

        $(this).next('.body').stop().slideToggle(500);
        $(this).parent().siblings('.wrap').children('.body').stop().slideUp(500);

    }, function() {

        $(this).next('.body').stop().slideToggle(500);

    });
});
俯瞰星空 2024-12-09 14:28:10

JQuery UI 几乎是 JQuery 的兄弟,它有很多有用的小部件,包括手风琴:

http:// /jqueryui.com/demos/accordion/

There is JQuery UI which is almost the brother of JQuery and it has a lot of useful widgets including an accordion:

http://jqueryui.com/demos/accordion/

一个人的夜不怕黑 2024-12-09 14:28:10

我开发了一个非常酷的图像和手风琴 jQuery 插件,名为 Slidorion。它结合了图像滑块和手风琴,因此可能正是您所寻找的。看看...

http://www.slidorion.com

There's a really cool image and accordion jQuery plugin I developed called Slidorion. it combines an image slider and an accordion so might be what your looking for. Check it out...

http://www.slidorion.com

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