我是这方面的初学者,想知道我是否可以添加这两个值
maxScreenWidth: 480,
menuTitle: 'Menu:'
进入这个脚本。
function DropDown(el) {
this.mainNav = el;
this.initEvents();
}
DropDown.prototype = {
initEvents: function () {
var obj = this;
obj.mainNav.on('click', function (event) {
$(this).toggleClass('active');
event.stopPropagation();
});
}
}
$(function () {
var mainNav = new DropDown($('#mainNav'));
$(document).click(function () {
// all dropdowns
$('.dropdown-menu').removeClass('active');
});
});
提前致谢。
- 此外,这是我应用到我的网站的下拉菜单。
http://tympanus.net/Tutorials/CustomDropDownListStyling/index2.html
我试图将此菜单仅应用于电话布局,但无论屏幕尺寸如何,它都会保持其形式。它应该在超过 480 像素时消失,但事实并非如此。
非常感谢你的帮助。