在我的网站www.polymath.io上有一个菜单div,基本上是一个小盒子+标志。显然这对很多人来说很难看,所以我想知道我是否可以某种方式激活div.mobile_menu.open
。
我需要离开默认值:
div.mobile_menu.close
到
div.mobile_menu.open
10秒后。
谢谢!
答案 0 :(得分:7)
使用setTimeout()
功能。见下文:
setTimeout(function(){
//Change menu to open here.
},10000);
函数末尾的数字以毫秒为单位。