-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Модалка | ||
|
||
figma: [https://www.figma.com/file/LavZmQfQccqyrTMzoSJYNu/CSS-Course?node-id=17326%3A0](https://www.figma.com/file/LavZmQfQccqyrTMzoSJYNu/CSS-Course?node-id=17326%3A0) | ||
|
||
Модалка или попап - блок, который открывается поверх содержимого страницы. Компонент встречается в любом проекте :) | ||
|
||
Хочу обратить внимание на затемнение страницы за модалкой - его делают с помощью растянутого на всю страницу полупрозрачного элемента.<br> | ||
Само модальное окно обычно располагают посередине страницы, нужно сделать так же) | ||
|
||
На странице нужно разместить модальное окно и кнопку, при нажатии на которую оно будет открываться. Компонент кнопки у вас уже есть :)<br> | ||
Модалки обычно открывают и закрывают с помощью JavaScript. Скрипт уже написан и подключен к решению. | ||
|
||
При нажатии на кнопку с `id="modal-open"` скрипт будет: | ||
- добавлять блоку модального окна с `id="modal"` свойство `display: block` | ||
- добавлять `body` свойство `overflow: hidden` чтобы запретить скролл страницы | ||
|
||
При нажатии на крестик с `id="modal-close"`: | ||
- добавлять блоку модального окна с `id="modal"` свойство `display: none` | ||
- добавлять `body` свойство `overflow: initial`, тем самым разрешая скролл на странице | ||
|
||
Резюмируя, чтобы скрипт заработал: | ||
- Кнопке присвоить `id="modal-open"` | ||
- Крестику в модалке присвоить `id="modal-close"` | ||
- Самому компоненту модального окна - `id="modal"` | ||
|
||
Не забудьте, что изначально модальное окно должно быть скрыто. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!DOCTYPE html> | ||
<!-- Страница с модалкой --> | ||
<html lang="ru"> | ||
<head> | ||
<link rel="stylesheet" href="../../assets/css/main.css"> | ||
<link rel="stylesheet" href="./modal.css"> | ||
<title>Modal</title> | ||
</head> | ||
<body> | ||
</body> | ||
<script src="./index.js"></script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
(function() { | ||
const close = document.getElementById('modal-close'); | ||
const modal = document.getElementById('modal'); | ||
const modalOpen = document.getElementById('modal-open'); | ||
|
||
if (!close || !modalOpen || !modal) { | ||
return; | ||
} | ||
|
||
modalOpen.addEventListener('click', () => { | ||
modal.style.display = 'block'; | ||
document.body.overflow = 'hidden'; | ||
}); | ||
|
||
close.addEventListener('click', () => { | ||
modal.style.display = 'none'; | ||
document.body.overflow = 'initial'; | ||
}); | ||
})(); |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
const expect = require('chai').expect; | ||
|
||
describe('lection3/modal', () => { | ||
it('Модалка', () => { | ||
expect(1).to.equal(1); | ||
}); | ||
}); |