Расположение кнопки в абсолютно неправильном месте, куда она должна - PullRequest
0 голосов
/ 02 июля 2018

У меня есть веб-страница с 2 различными разделами. Каждая высота окна просмотра. У каждого есть кнопка «работа» в центре. При нажатии на нее, это исчезает, и некоторые ссылки появляются там, где это было. То же самое относится и к следующему разделу.

Я пытаюсь добавить функцию сброса, чтобы удалить ссылки и добавить кнопки назад. Первоначально я пытался заставить одну кнопку сбросить все разделы, но после этого не получилось, теперь я пытаюсь создать отдельную кнопку для каждого раздела.

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

function openSites(categoryType) {
  if (categoryType == "work") {
    var sites = document.getElementById("workSites");
    var button = document.getElementById("workButton");
  } else if (categoryType == "other") {
    var sites = document.getElementById("otherSites");
    var button = document.getElementById("otherButton");
  }
  sites.classList.add("show");
  sites.classList.remove("hide");
  button.classList.add("hide");
}

function reset(categoryType) {
  if (categoryType == "work") {
    var sites = document.getElementById("workSites");
    var button = document.getElementById("workButton");
  } else if (categoryType == "other") {
    var sites = document.getElementById("otherSites");
    var button = document.getElementById("otherButton");
  }
  sites.classList.remove("show");
  sites.classList.add("hide");
  button.classList.remove("hide");
}

function betterReset() {
  for (category in document.getElementsByClassName("category-container")) {
    document.write(category);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

#page-1 {
  display: block;
  background-color: #3faae4;
}

#page-2 {
  display: block;
  background-color: #ffffff;
}

.pointer {
  cursor: pointer;
}

#work {
  height: 100%;
  width: 100%;
}

#other {
  height: 100%;
  width: 100%;
}

#workSites {
  height: 100%;
  width: 100%;
}

#otherSites {
  height: 100%;
  width: 100%;
}

.sites {
  list-style-type: none;
  height: 100%;
}

.site {
  padding: 50px 0px;
  flex-grow: 1;
  text-align: center;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-container {
  height: 100%;
}

.category-button {
  border: solid 0.5px;
  padding: 60px;
}

.buttonClose {
  position: absolute;
  border: solid 0.5px;
  border-radius: 5px;
  right: 3px;
  bottom: 0px;
  width: 70px;
  height: 35px;
}

.show {
  display: block;
}

.hide {
  display: none;
}
<!DOCTYPE html>
<html>
<head>
  <title>Nick's site</title>
  <link rel="stylesheet" type="text/css" href="./styles3.css">
  <meta name="viewport" content="width= device-width, inital-scale=1">
</head>
<body>
  <div id="page-1" class="page">
    <div id="work">
      <div id="workButton" class="category-container center">
        <a class="category-button pointer" onclick="openSites('work')">Work</a>
      </div>
      <div id="workSites" class="hide">
        <ul class="sites center">
          <li class="site"><a class="pointer" href="#">Printfactory</a></li>
          <li class="site"><a class="pointer" href="#">Henry's Site</a></li>
        </ul>
        <button onclick="reset('work')" class="buttonClose pointer" style="z-index: 2;">
         Reset
       </button>
      </div>
    </div>
  </div>
  <div id="page-2" class="page">
    <div id="other">
      <div id="otherButton" class="category-container center">
        <a class="category-button pointer" onclick="openSites('other')">Other</a>
      </div>
      <div id="otherSites" class="hide">
        <ul class="sites center">
          <li class="site"><a class="pointer" href="#">#</a></li>
          <li class="site"><a class="pointer" href="#">#</a></li>
          <li class="site"><a class="pointer" href="#">#</a></li>
        </ul>
        <button onclick="reset('other')" class="buttonClose pointer" style="z-index: 2;">
          Reset2
        </button>
      </div>
    </div>
  </div>
</body>
</html>

1 Ответ

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

Вы даете position:absolute ту кнопку сброса. Это заставляет их принимать значения right и bottom относительно следующего родителя с position:relative. В данном случае это тег body.

Чтобы это исправить, добавьте position:relative к родительским элементам div.

#workSites,
#otherSites {
  position: relative;
}

Надеюсь, это поможет:>

function openSites(categoryType) {
                if (categoryType == "work") {
                    var sites = document.getElementById("workSites");
                    var button = document.getElementById("workButton");
                } else if (categoryType == "other") {
                    var sites = document.getElementById("otherSites");
                    var button = document.getElementById("otherButton");
                }
                sites.classList.add("show");
                sites.classList.remove("hide");
                button.classList.add("hide");

            }
            function reset(categoryType) {
                if (categoryType == "work") {
                    var sites = document.getElementById("workSites");
                    var button = document.getElementById("workButton");
                } else if (categoryType == "other") {
                    var sites = document.getElementById("otherSites");
                    var button = document.getElementById("otherButton");
                }
                sites.classList.remove("show");
                sites.classList.add("hide");
                button.classList.remove("hide");
            }
            function betterReset() {
                for (category in document.getElementsByClassName("category-container")){
                    document.write(category);
                }
            }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.page {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}
#page-1 {
    display: block;
    background-color: #3faae4;
}
#page-2 {
    display: block;
    background-color: #ffffff;
}
.pointer {
    cursor: pointer;
}
#work {
    height: 100%;
    width: 100%;
}
#other {
    height: 100%;
    width: 100%;
}
#workSites {
    height: 100%;
    width: 100%;
}
#otherSites {
    height: 100%;
    width: 100%;
}
.sites {
    list-style-type: none;
    height: 100%;
}
.site {
    padding: 50px 0px;
    flex-grow: 1;
    text-align: center;
}
.center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-container {
    height: 100%;
}
.category-button {
    border: solid 0.5px;
    padding: 60px;
}
.buttonClose {
    position: absolute;
    border: solid 0.5px;
    border-radius: 5px;
    right: 3px;
    bottom: 0px;
    width: 70px;
    height: 35px;
}
.show {
    display: block;
}
.hide {
    display: none;
}

#workSites,
#otherSites {
  position: relative;
}
<!DOCTYPE html>
<html>
    <head>
        <title>Nick's site</title>
        <link rel="stylesheet" type="text/css" href="./styles3.css">
        <meta name="viewport" content="width= device-width, inital-scale=1">
    </head>
    <body>
        <div id="page-1" class="page">
            <div id="work">
                <div id="workButton" class="category-container center">
                    <a class="category-button pointer" onclick="openSites('work')">Work</a>
                </div>
                <div id="workSites" class="hide">
                    <ul class="sites center">
                        <li class="site"><a class="pointer" href="#">Printfactory</a></li>
                        <li class="site"><a class="pointer" href="#">Henry's Site</a></li>
                    </ul>
                    <button onclick="reset('work')" class="buttonClose pointer" style="z-index: 2;">
                        Reset
                    </button>
                </div>
            </div>
        </div>
        <div id="page-2" class="page">
            <div id="other">
                <div id="otherButton" class="category-container center">
                    <a class="category-button pointer" onclick="openSites('other')">Other</a>
                </div>
                <div id="otherSites" class="hide">
                    <ul class="sites center">
                        <li class="site"><a class="pointer" href="#">#</a></li>
                        <li class="site"><a class="pointer" href="#">#</a></li>
                        <li class="site"><a class="pointer" href="#">#</a></li>
                    </ul>
                    <button onclick="reset('other')" class="buttonClose pointer" style="z-index: 2;">
                        Reset2
                    </button>
                </div>
            </div>
        </div>
    </body>
</html>
...