为什么我的下拉菜单需要一整秒才能下拉?
我正在开发一个新网站,我注意到我的菜单下拉速度比其他地方慢。
我所指的菜单位于顶部的 [URL 已编辑]:男士 |女装 |青年|输入|
I'm working to develop a new site and I've noticed that my menus drop down slower then those elsewhere.
The menu I'm referring to is on the top at [URL redacted]:Men's | Women's | Youth | Type |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您的菜单脚本的默认
delay
参数为350
。您可能想要更改此参数。
Your Menu script has a default
delay
parameter of350
.You may want to change this parameter.
您的下拉菜单由 javascript 控制,特别是 menu.js,其中有一个值:
delay: 350
尝试根据您的喜好调整此值。Your drop-down is being controlled by javascript, specifically menu.js, in which is a value:
delay: 350
Try adjusting this to your taste.如果您了解网站上使用的脚本的方法,这可能会有所帮助。
如果您查看
/server/js/menu.js
中的文件,请将delay
选项设置为小于 350。It might help if you knew your way around the scripts you're using on your site.
If you look at your file in
/server/js/menu.js
, set yourdelay
option to something less than 350.