简体   繁体   中英

How do I hide an element on resize?

I'm trying to hide a mobile nav menu when the user resizes the screen past a certain point (767px). I thought this would be fairly straight-forward, but I can't get it to work. Any suggestions? ps My constrainNav function is being called in the body tag (not shown).

// Toggle between hamburger and full mobile menu //

const nav = document.getElementById("mobile-nav");
const hamburger = document.getElementById("hamburger");
const width = window.innerWidth;

function navToggle() {
  if (nav.style.display === "") {
    nav.style.display = "block";
  } else {
    nav.style.display = "";
  }
}

// Keep mobile-nav visible only when 767px or less

function constrainNav() {
  if (nav && width > 767) {
    nav.style.display = "none";
  }
}
<nav class="nav">
        <div id="navbar" class="nav__navbar"">
            <div class="nav__left">
                <a href="#"><img src="src/assets/img/Grieve-logo.png" class="nav__img" alt="grieve logo"></a>
            </div>
            <div class="nav__right">
                <ul class="nav__list">
                    <li class="nav__list-item"><a class="nav__list__link" href="#">Wines</a></li>
                    <li class="nav__list-item"><a class="nav__list__link" href="#">Vineyard</a></li>
                    <li class="nav__list-item"><a class="nav__list__link" href="#">About</a></li>
                    <li class="nav__list-item"><a class="nav__list__link" href="#">Winemaker</a></li>
                    <li class="nav__list-item"><a class="nav__list__link" href="#">Visit</a></li>
                    <li class="nav__list-item"><a class="nav__list__link" href="#">Buy</a></li>
                </ul>
                <a href="#" class="nav__hamburger" onClick="navToggle();"><i class="fa fa-bars"></i></a>
            </div>
            <div class="nav__navbar nav__navbar--mobile" id="mobile-nav">
                <div class="nav__left nav__left--mobile">
                    <img src="src/assets/img/XXXXXX-logo.png" class="nav__img" alt="XXXXX logo">
                    <a href="#" class="nav__hamburger" onClick="navToggle();"><i class="fa fa-bars"></i></a>
                </div>
                <ul class="nav__list--mobile">
                    <li class="nav__list__item--mobile"><a class="nav__list__link--mobile" href="#">Wines</a></li>
                    <li class="nav__list__item--mobile"><a class="nav__list__link--mobile" href="#">Vineyard</a></li>
                    <li class="nav__list__item--mobile"><a class="nav__list__link--mobile" href="#">About</a></li>
                    <li class="nav__list__item--mobile"><a class="nav__list__link--mobile" href="#">Winemaker</a></li>
                    <li class="nav__list__item--mobile"><a class="nav__list__link--mobile" href="#">Visit</a></li>
                    <li class="nav__list__item--mobile"><a class="nav__list__link--mobile" href="#">Buy</a></li>
                </ul>
            </div>
        </div>
    </nav>
.nav {
  position: sticky; // * curious to see how this works once we get to browser testing.
  top: 0;
  margin-top: -3px; // * necessary maybe?  Not sure how to get rid of that small gap above the nav.
  height: 100%;

  &__navbar {
    width: 100%;
    overflow: hidden;
    height: 3rem;
    background-color: $colorPrimary;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    align-items: center;

    &--mobile {
      display: none;
      position: absolute;
      top: -17.625rem;
      left: 0;
      background-color: $colorSecondary;
      max-width: 100%;
      height: auto;
    }
  }

  &__left {
    color: $colorWhite;
    margin: 0.75rem 0 0 0;

    &--mobile {
      display: flex;
      justify-content: space-between;
    }
  }

  &__img {
    width: 5.625rem;
  }

  &__right {
    margin: 0;
  }

  &__hamburger {
    display: none;
    color: $colorWhite;
    margin: 0;

    @include respond(med) {
      display: block;
    }
  }

  &__list {
    list-style: none;
    display: flex;
    text-transform: uppercase;
    justify-content: center;

    @include respond(med) {
      display: none;
    }

    &--mobile {
      display: flex;
      flex-direction: column;
      list-style: none;
      padding: 8rem 0;
      align-items: center;
    }

    &__link {
      text-decoration: none;
      color: $colorWhite;
      cursor: pointer;
      text-transform: uppercase;
      font-size: 1rem;
      margin: 0 1rem;

      @media (max-width: 40.625rem) {
        margin: 0 0.5rem;
      }

      &--mobile {
        text-decoration: none;
        color: $colorWhite;
        cursor: pointer;
        text-transform: uppercase;
        font-size: 1rem;
        margin: 0 1rem;

        @include respond(med) {
          font-size: 2rem;
        }
      }
    }

    &__item {
      &--mobile {
        padding: 2rem;
      }
    }
  }
}

I think this should be enough code. I can provide more. Thanks!

use css media query, in this case you dont need javascript.

@media screen and (min-width: 767px) {
  .nav {
    display: none
  }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM