Отступы, поля и цвет фона не исчезнут - PullRequest
0 голосов
/ 02 июля 2018

Фон

Я пытаюсь сделать фиксированную навигационную панель с выпадающим списком в одном из вариантов. На экранах меньшего размера наложение меню отображает все параметры, отображаемые вертикально в середине экрана. Я не хочу, чтобы фоновый цвет / указатель мыши был на любой из ссылок в версии с небольшим экраном. Фон навигации должен быть просто #fff или #111, в зависимости от используемой темы (измените «светлую» на «темную» в .mobile-menu и в nav, чтобы увидеть другую тему меню). Ширина экрана - просто заполнители для тестирования. У меня остались некоторые остатки старой версии в JavaScript (например, navList) - извините за это - пожалуйста, просто игнорируйте эти вещи.

Проблемы

  • Цвет фона на вложенных ссылках, а также цвет фона при наведении не исчезнут.
  • Ссылка, которая имеет под-ссылки, слишком высока, и я не могу избавиться от ее заполнения / поля.

Что я пробовал

Я попытался переопределить с

* { background-color: transparent }

и

* { padding: 0; margin: 0 }

в нижней части моего небольшого экрана медиа-запроса безрезультатно, а также сброс этих свойств для отдельных элементов и / или классов элементов.

Я также пытался использовать <a> вместо <div> для ссылки 2 (.dropbtn), но это приводит к тому, что .dropdown-content появляется прямо над ссылкой 2, а не начинается прямо под ней. Мне удалось это исправить с помощью чего-то такого хитрого, как top: 47px на .dropdown-content, но я действительно предпочел, чтобы при использовании <div> меню правильно отображалось под ссылкой 2 (и не мог найти параметр, который вызвал бы <a> Ссылка 2 ведет себя как <div>).

Отключение всего JavaScript тоже не исправило.

Код

Вот что у меня так далеко: https://jsfiddle.net/heyycap/2p0zq61e/1355/

var mobile = $('.mobile-menu')
var navList = $('nav > ul')
var winHeight
var docHeight
var throttleScroll
var scrollTop
var nav = $('nav')
var light = $('.light')
var dark = $('.dark')
var breakPoint = 600
var windowSize = 0
var newWindowSize = 0
var lightColor = '#fff'
var darkColor = '#111'

var scrollDiv = document.createElement("div");
scrollDiv.className = "scrollbar-measure";
document.body.appendChild(scrollDiv);
var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
document.body.removeChild(scrollDiv);
console.info('Scrollbar: ' + scrollbarWidth + 'px')

function styleLightDark() {
  light.css({
    'background-color': lightColor,
    'color': darkColor
  })
  dark.css({
    'background-color': darkColor,
    'color': lightColor
  })
}

function styleMobileMenu() {
  if (mobile.hasClass('light')) {
    mobile.css('background-color', lightColor)
  } else {
    mobile.css('background-color', darkColor)
  }
}

function styleNav() {
  if ($('nav').hasClass('light')) {
    $('nav').css('background-color', lightColor)
  } else {
    $('nav').css('background-color', darkColor)
  }
}

function remBg() {
  light.css('background-color', '')
  dark.css('background-color', '')
}

function changeNav(x) {
  if (windowSize == 'small') {
    if (x <= breakPoint) {
      nav.hide()
    }
  }
  if (windowSize == 'large') {
    if (x > breakPoint) {
      nav.fadeIn(500)
    }
  }
}

function checkWindowSize(x) {
  if (x <= breakPoint) {
    newWindowSize = 'small'
  }
  if (x > breakPoint) {
    newWindowSize = 'large'
  }
}

function getMeasurements() {
  var winHeight = $(window).height()
  var docHeight = $(document).height()
  var trackLength = docHeight - winHeight
  var innerWidth = $(document).width()
  var widthWithScrollbar = innerWidth + scrollbarWidth
  amountScrolled()
  console.info('Width - scrollbar, if it exists: ' + innerWidth + 'px')
  if (winHeight == docHeight) {
    checkWindowSize(innerWidth)
    if (windowSize != newWindowSize) {
      windowSize = newWindowSize
      changeNav(innerWidth)
    }
  } else {
    checkWindowSize(widthWithScrollbar)
    if (windowSize != newWindowSize) {
      windowSize = newWindowSize
      changeNav(widthWithScrollbar)
    }
  }
}

function amountScrolled() {
  scrollTop = $(window).scrollTop()
  console.info('Scrolled: ' + scrollTop + 'px')
  if ((scrollTop < 5) && (innerWidth > breakPoint)) {
    remBg()
  } else if ((scrollTop < 5) && (nav.is(':hidden')) && (innerWidth <= breakPoint)) {
    remBg()
  } else if ((!nav.is(':hidden')) && (innerWidth <= breakPoint)) {
    mobile.css('background-color', '')
  } else if ((scrollTop >= 5) && (nav.is(':hidden')) && (innerWidth <= breakPoint)) {
    remBg()
    styleMobileMenu()
  } else if ((scrollTop >= 5) && (innerWidth > breakPoint)) {
    styleLightDark()
  }
}

getMeasurements()

$(window).on('resize', function() {
  getMeasurements()
})

$(window).on('scroll', function() {
  clearTimeout(throttleScroll);
  throttleScroll = setTimeout(function() {
    amountScrolled()
  }, 10)
})

mobile.on('click', function() {
  scrollTop = $(window).scrollTop()
  if (nav.is(':hidden')) {
    nav.fadeIn(500)
    remBg()
    styleNav()
  } else if ((!nav.is(':hidden')) && (scrollTop > 5)) {
    nav.fadeOut(500)
    remBg()
    styleMobileMenu()
  } else {
    nav.fadeOut(500)
    remBg()
  }
})
body {
  background-color: lightblue;
  margin: 50px 0;
}

.mobile-menu {
  display: none;
  transition: .5s ease;
}

nav {
  position: fixed;
  width: 100%;
  top: 0;
  opacity: .9;
  transition: .5s ease;
}

nav a {
  float: left;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  padding: 14px 16px;
}

nav.dark a:hover,
nav.dark .dropdown:hover .dropbtn {
  background-color: #fff;
  color: #111;
}

nav.light a:hover,
nav.light .dropdown:hover .dropbtn {
  background-color: #111;
  color: #fff;
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
}

.dropdown-content a {
  float: none;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown:hover .dropdown-content {
  display: block;
}

#navigation,
#resources,
.resources {
  display: none;
}

.light * {
  color: #111;
}

.dark * {
  color: #fff;
}

.dark .dropdown-content {
  background-color: #111;
}

.light .dropdown-content {
  background-color: #fff;
}

.scrollbar-measure {
  width: 100px;
  height: 100px;
  overflow: scroll;
  position: absolute;
  top: -9999px;
}


/* MEDIA QUERIES */

@media (max-width: 600px) {
  .mobile-menu {
    display: block;
    position: fixed;
    text-align: right;
    width: 100%;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 3;
    height: auto;
    opacity: .9;
    align-items: center;
    padding: 14px 16px;
    overflow: hidden;
  }
  nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    display: none;
  }
  nav>div {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
  nav a,
  .dropdown,
  #navigation,
  #resources,
  .resources,
  .dropdown-content a {
    float: none;
    display: block;
    text-align: center;
    position: relative;
    padding: 1px 0;
  }
  .dropdown-content,
  .dropbtn {
    float: none;
    display: block;
    text-align: center;
    position: relative;
    padding: 0;
  }
  #navigation:after {
    content: "Navigation";
  }
  #resources:after {
    content: "Resources";
  }
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<body>
  <a class="mobile-menu light">menu</a>
  <nav class="light">
    <div>
      <div id="navigation"></div>
      <a href="#">Link 1</a>
      <div class="dropdown">
        <div href="#" class="dropbtn">Link 2</div>
        <div class="dropdown-content">
          <a href="#">Link 2-1</a>
          <a href="#">Link 2-2</a>
          <a href="#">Link 2-3</a>
          <a href="#">Link 2-4</a>
          <a href="#">Link 2-5</a>
        </div>
      </div>
      <a href="#">Link 3</a>
      <a href="#">Link 4</a>
      <a href="#">Link 5</a>
      <a href="#">Link 6</a>
      <a href="#">Link 7</a>
      <div id="resources"></div>
      <div class="resources">
        <a href="#">Link 8</a>
        <a href="#">Link 9</a>
        <a href="#">Link 10</a>
        <a href="#">Link 11</a>
      </div>
    </div>
  </nav>
  <section>
    <p>Test text</p>
    <p>some text to wrap : some text to wrap : some text to cause scrolling : : some text to wrap : some text to wrap : some text to cause scrolling : : some text to wrap : some text to wrap : some text to cause scrolling : : some text to wrap : some text
      to wrap : some text to cause scrolling : : some text to wrap : some text to wrap : some text to cause scrolling : : some text to wrap : some text to wrap : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>some text to cause scrolling : </p>
    <p>Last bit of text</p>
  </section>
</body>

1 Ответ

0 голосов
/ 02 июля 2018

Добавьте эти стили, используя медиа-запрос

@media screen and (max-width: 767px) {
  nav.light a:hover, nav.light .dropdown:hover .dropbtn {
      background-color: transparent;
      color: black;
  }
  .dropdown .dropbtn {
    padding: 0 16px;
  }
}

Обновленная скрипка

...