forked from itchief/ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
48 lines (41 loc) · 1.46 KB
/
example.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>JavaScript - Пример реализации динамического модального окна для сайта на чистом JavaScript</title>
<style>
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 19px;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
}
</style>
<link rel="stylesheet" href="modal.css">
</head>
<body>
<button id="show-modal" class="btn">Открыть</button>
<script src="modal.js"></script>
<script>
(function () {
// создаём модальное окно
var modal = $modal();
// при клике по кнопке #show-modal
document.querySelector('#show-modal').addEventListener('click', function () {
// отобразим модальное окно
modal.show();
});
})();
</script>
</body>
</html>