-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex22.3.html
64 lines (64 loc) · 2.14 KB
/
index22.3.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<title>Горячие клавиши</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.gstatic.com/%22%3E" />
<link
href="https://fonts.googleapis.com/css2?family=Poiret+One&display=swap"
rel="stylesheet"
/>
<script src="js/index.js" defer></script>
<link rel="manifest" href="manifest.webmanifest" />
</head>
<body class="flex-game">
<div class="hint" id="hi">
<div class="but">
<a href="game.html"
><button class="one floating-button">Меню</button></a
>
<a href="menu.html"
><button class="two floating-button">Обучение</button></a
>
</div>
<p class="pod modal-window-close">Перетаскивание с Ctrl + Shift</p>
<button class="floating-button">Подсказка</button>
</div>
<div class="cent">
<h1 class="cen">
Какие сочетания клавиш используются для создание ярлыка объекта?
</h1>
<div>
<a href="#" class="button1 green" id="button-1"
>Перетаскивание с Ctrl</a
>
<a href="#" class="button1 green" id="button-2"
>Перетаскивание с Shift</a
>
<a href="index22.4.html" class="button1 green" id="button-3"
>Перетаскивание с Ctrl + Shift</a
>
</div>
</div>
<script src="js/jquery-3.3.1.js"></script>
<script>
$(function () {
$("#button-1").click(function () {
$(this).removeClass("green");
$(this).addClass("red");
});
});
$(function () {
$("#button-2").click(function () {
$(this).removeClass("green");
$(this).addClass("red");
});
});
$("#hi").on("click", function () {
$(".pod").removeClass("modal-window-close");
$("div.pod").addClass("is-open");
});
</script>
</body>
</html>