如何在推出时淡出 jquery Superfish ?

发布于 2024-12-10 09:30:18 字数 37 浏览 0 评论 0原文

我正在使用查询超级鱼,我想在推出时淡出菜单。 我该怎么做?

I am using query super fish and i would like to fadeout the menu on rollout.
how can i do this ?

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

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

发布评论

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

评论(2

岁月如刀 2024-12-17 09:30:18

不支持使用 superfish 关闭动画。可能有一些黑客攻击,但官方发行版似乎不支持它们。

Closing animations with superfish are not supported. There may be a few hacks out there, but it appears that the official distribution does not support them.

口干舌燥 2024-12-17 09:30:18

Superfish 仍然有一个活跃的分支,名为 Superfish Reloaded
看看他们的代码,现在已经实现了 animOut

jQuery(document).ready(function($){
        $('#menu1').superfish({
            delay: 1000,
            speedIn     : 300,
            speedOut    : 100,
            animIn: {marginTop: '10px','opacity':'show','height':'show'},
            animOut: {marginTop: '-10px', 'opacity':'hide','height':'hide'}
        });
        $('#default').superfish();  
    })

There is still an active branch working on Superfish, called Superfish Reloaded.
Looking at their code, an animOut is implemented, now.

jQuery(document).ready(function($){
        $('#menu1').superfish({
            delay: 1000,
            speedIn     : 300,
            speedOut    : 100,
            animIn: {marginTop: '10px','opacity':'show','height':'show'},
            animOut: {marginTop: '-10px', 'opacity':'hide','height':'hide'}
        });
        $('#default').superfish();  
    })
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文