Полноэкранная поисковая форма

Здесь вы узнаете, как сделать полноэкранную поисковую форму при помощи CSS и JavaScript.


Попробовать самому »

Как сделать полноэкранную поисковую форму

Шаг 1) Добавляем HTML:

Пример


<div id="myOverlay" class="overlay">
  <span class="closebtn" onclick="closeSearch()" title="Закрыть">x</span>
  <div class="overlay-content">
    <form action="action_page.php">
      <input type="text" placeholder="Искать.." name="search">
      <button type="submit"><i class="fa fa-search"></i></button>
    </form>
  </div>
</div>

Шаг 2) Добавляем CSS:

Пример


/* Эффект оверлея с черным фоном */
.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9); /* Черный цвет с небольшой прозрачностью */
}

/* Контент */
.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

/* Кнопка закрытия */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}

/* Стили поля поиска */
.overlay input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  width: 80%;
  background: white;
}

.overlay input[type=text]:hover {
  background: #f1f1f1;
}

/* Стили кнопки отправки данных */
.overlay button {
  float: left;
  width: 20%;
  padding: 15px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.overlay button:hover {
  background: #bbb;
}

Шаг 3) Добавляем JavaScript:

Используем JavaScript, чтобы включить/выключить эффект оверлейного окна с поисковой формой.

Пример


// Открываем поисковую форму
function openSearch() {
  document.getElementById("myOverlay").style.display = "block";
}

// Закрываем поисковую форму
function closeSearch() {
  document.getElementById("myOverlay").style.display = "none";
}

Попробовать самому »