如何更改 jQuery Accordion 的动画风格?

发布于 2024-09-02 12:43:44 字数 238 浏览 5 评论 0原文

有没有办法更改 jQuery 手风琴使用的默认动画?它似乎是“幻灯片”,但我想使用弹跳或下降效果。

这是我当前的代码:

$("#accordion").accordion({
    autoHeight: false,
    collapsible: true,
    event: 'click',
    active: 4
});

我想将其从幻灯片更改为下降或弹跳。

Is there a way to change the default animation that jQuery accordion uses? It appears to be "slide" but I'd like to use a Bounce or Drop effect.

Here's my current code:

$("#accordion").accordion({
    autoHeight: false,
    collapsible: true,
    event: 'click',
    active: 4
});

I'd like to change this from a slide to a drop or a bounce.

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

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

发布评论

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

评论(2

三生一梦 2024-09-09 12:43:44

您可以使用动画选项来实现此目的,例如,要获得弹跳:

$("#accordion").accordion({ 
  animated: 'bounceslide',
  autoHeight: false, 
  collapsible: true, 
  event: 'click', 
  active: 4
});

默认为 'slide'您可以在此处查看演示

You can use the animated option for this, for example to get your bounce:

$("#accordion").accordion({ 
  animated: 'bounceslide',
  autoHeight: false, 
  collapsible: true, 
  event: 'click', 
  active: 4
});

The default is 'slide', you can view a demo here.

浅暮の光 2024-09-09 12:43:44

如果您想要更多动画样式,可以使用 JQuery UI 效果。是的,那里也有反弹和掉落效果。

注意:您还可以使用 animate 构建自己的动画样式 方法。

You can use the JQuery UI effects if you want more animations styles. And yes there are bounce and drop effects there too.

Note: You can also construct your own animations styles using animate method.

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