Адаптивная версия сайта

Когда включен режим адаптивного браузера (Chrome, Firefox, is), меню гамбургера не появляется, но когда размер браузера уменьшается, появляется меню гамбургера. Когда я помещаю сайт на сервер и открываю его на своем мобильном телефоне, меню гамбургеров не появляется. Зачем?

PS> Сайт одностраничный, я использую вкладки в меню.

if($(window).innerWidth() <= 714) {
  const sidebarBox = document.querySelector('#box'),
    sidebarBtn = d ocument.querySelector('#btn'),
    pageWrapper = d ocument.querySelector('#page-wrapper');
  sidebarBtn.addEventListener('click', event => {
    sidebarBtn.classList.toggle('active');
    sidebarBox.classList.toggle('active');
  });
  pageWrapper.addEventListener('click', event => {
    if (sidebarBox.classList.contains('active')) {
      sidebarBtn.classList.remove('active');
      sidebarBox.classList.remove('active');
    }
  });
  window.addEventListener('keydown', event => {
    if (sidebarBox.classList.contains('active') && event.keyCode === 27) {
      sidebarBtn.classList.remove('active');
      sidebarBox.classList.remove('active');
    }
  });
};
#tabs-container {
  width: 100%;
  /*background-image: url('img/escheresque_ste.png');*/
  background-image: linear-gradient(to right, rgba(0, 0, 255, 0.45), rgba(0, 0, 255, 0.45)), url('img/bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 1000px;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.tabs-menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: -1px;
  padding-top: 15px;
}

.tabs-menu li {
  height: 30px;
  line-height: 30px;
  float: left;
  margin-right: 10px;
  background-color: #ccc;
  border-top: 1px solid #d4d4d1;
  border-right: 1px solid #d4d4d1;
  border-left: 1px solid #d4d4d1;
  list-style-type: none;
}

.tabs-menu li.current {
  position: relative;
  background-color: tra;
  border-bottom: 1px solid #fff;
  z-index: 5;
}

.tabs-menu li a {
  padding: 10px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.tabs-menu .current a {
  color: #2e7da3;
}

.tab {
  width: 100%;
}

.tab-content {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: none;
}

.listServices__item {
  font-family: 'Montserrat', sans-serif;
  color: white;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}

#tab-1 {
  display: block;
}

@media (max-width: 714px) {
  #page-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #title {
    color: #f6f6f6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
  }
  #btn {
    position: fixed;
    z-index: 5;
    top: 68px;
    right: 15px;
    cursor: pointer;
    transition: left 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  }
  #btn div {
    width: 35px;
    height: 2px;
    margin-bottom: 8px;
    background-color: #232323;
    transition: transform 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91), opacity 500ms, background-color 250ms;
  }
  #btn.active div {
    background-color: #343838;
  }
  #btn.active #top {
    transform: translateY(10px) rotate(-135deg);
  }
  #btn.active #middle {
    opacity: 0;
    transform: rotate(135deg);
  }
  #btn.active #bottom {
    transform: translateY(-10px) rotate(-45deg);
  }
  #box {
    position: fixed;
    z-index: 4;
    overflow: auto;
    top: 0px;
    right: -275px;
    width: 275px;
    opacity: 0;
    padding: 20px 0px;
    height: 75%;
    background-color: #f6f6f6;
    color: #343838;
    transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  }
  #box.active {
    right: 0px;
    opacity: 1;
  }
  #items {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 75%;
  }
  #items .item {
    position: relative;
    cursor: pointer;
    padding: 15px 30px;
    transition: all 250ms;
  }
  .menu__links__item:hover {
    background: none;
  }
  #items .item:hover {
    padding: 15px 45px;
    background-color: rgba(52, 56, 56, 0.2);
  }
  .menu__links__item {
    line-height: 20px;
    vertical-align: center;
  }
  #btn,
  #btn * {
    will-change: transform;
  }
  #box {
    will-change: transform, opacity;
  }
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="tabs-container">
  <div class="container">

    <div id="page-wrapper">
      <div id="title"></div>
    </div>

    <div id="btn">
      <div id='top'></div>
      <div id='middle'></div>
      <div id='bottom'></div>
    </div>

    <div id="box">
      <div class="tabs-menu menu menu--ama" id="items">
        <a class="current menu__item" href="#tab-1">
          <span class="menu__item-name item">Наши услуги</span>
        </a>
        <a class="menu__item" href="#tab-2">
          <span class="menu__item-name item">Наши клиенты</span>
        </a>
        <a class="menu__item" href="#tab-3">
          <span class="menu__item-name item">Контакты</span>
        </a>
      </div>
    </div>

0 ответов

Другие вопросы по тегам