私はこれについて非常に初心者であり、とにかくこれら2つの値を追加できるかどうか疑問に思っています
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以上だと消えるはずですが、そうではありません。
手伝ってくれてどうもありがとう。