mirror of
https://github.com/statbate/layout.git
synced 2026-08-11 03:12:42 +00:00
21 lines
441 B
JavaScript
21 lines
441 B
JavaScript
var mobile = false;
|
|
|
|
window.addEventListener("resize", function() {
|
|
if(mobile && window.innerWidth > 805) {
|
|
mobile = false;
|
|
$(".icon-menu").removeClass("_active");
|
|
$(".header_mobile_nav").hide();
|
|
}
|
|
});
|
|
|
|
function choose() {
|
|
if(mobile) {
|
|
$(".icon-menu").removeClass("_active");
|
|
$(".header_mobile_nav").hide();
|
|
mobile = false;
|
|
return;
|
|
}
|
|
$(".icon-menu").addClass("_active");
|
|
$(".header_mobile_nav").show();
|
|
mobile = true;
|
|
}
|