我正在尝试创建一个响应式导航栏菜单,就像引导程序的导航栏但我不能使用jquery,我正在使用Mootools。以前有人做过这种行为吗? 感谢。
代码:
答案 0 :(得分:1)
你绝对应该提供更多信息,Dimitar Christoff也说得对,因为媒体查询能够提供响应能力。
但我可以想象你的问题实际上是在点击菜单按钮时切换折叠菜单,如果是这种情况我曾经使用过这个代码,使用mootools和bootstrap 3。
/* bootstrap */
window.addEvent('load', function() {
$$('button[data-toggle=collapse]').each(function(btn) {
var target = $(btn.get('data-target'));
btn.addEvent('click', function() {
target.toggle();
})
});
})