如何在WordPress中将此jquery效果删除到导航栏?

时间:2014-09-26 11:32:16

标签: php jquery html css wordpress

我在我的网站here!使用Mantra主题
想要删除这个美丽(慢)动画效果,但不知道如何!(正在寻找它一个小时......我是菜鸟,对不起!)
nav bar

2 个答案:

答案 0 :(得分:2)

试试这个。这可能有帮助。

frontend.js档案中(wp-content / themes / mantrab / js / frontend.js)

//菜单动画

替换代码

over: function(){jQuery(this).children("ul").show(400);},

用这个

over: function(){jQuery(this).children("ul").show();},

答案 1 :(得分:0)

转到您的cpanel并打开文件(js/frontend.js

转到第109行

用以下内容更改行:

over: function(){jQuery(this).children("ul").show(400);},

肯定会有所帮助。