我對這個非常初學者,想反正是有,我可以添加這兩個值如何在Javascript上添加值?
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
我想只爲佈局手機應用此菜單,但保持其形狀,不管大小是什麼屏幕。它應該消失,當它是更多的480px,但它不是。
非常感謝您的幫助。
您是否希望在調用偵聽器時應用它們?如果是這樣,只需將它們添加到相關的CSS規則(即* active *類)。 – RobG 2013-03-27 05:44:43