2

我正在使用查询超级鱼,我想在推出时淡出菜单。我怎样才能做到这一点 ?

4

2 回答 2

1

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

于 2011-10-15T16:42:15.847 回答
0

仍然有一个活跃的分支在 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();  
    })
于 2012-06-21T07:39:07.773 回答