-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
80 lines (59 loc) · 3.3 KB
/
index.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="ru" class="notranslate" translate="no">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google" content="notranslate">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<title>Мастер Чи Вандер</title>
<link rel="stylesheet" href="./scss/style.css">
<link rel="apple-touch-icon" sizes="180x180" href="./img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon//favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon//favicon-16x16.png">
</head>
<body class="start" id="body">
<div class="container" id="container">
<!-- Общая информация о чатботе -->
<h1 id="h1">Эмулятор Лося</h1>
<div class="media" id="media">
<div class="bio">
<div class="pfpBox" id="pfpBox">
<img class="pfp" id="deadFace" src="./img/emotions/dead.png" draggable="false">
<img class="pfp" id="blinkingFace" src="./img/emotions/blinking.png" draggable="false">
<img class="pfp" id="deadLookingFace" src="./img/emotions/dead-look.png" draggable="false">
<img class="pfp" id="wonderingFace" src="./img/emotions/wondering.png" draggable="false">
<img class="pfp" id="lookingFace" src="./img/emotions/looking.png" draggable="false">
<img class="pfp" id="laughingFace" src="./img/emotions/laughing.png" draggable="false">
<img class="pfp" id="angryFace" src="./img/emotions/angry.png" draggable="false">
<img class="pfp" id="wowFace" src="./img/emotions/wow.png" draggable="false">
<img class="pfp" id="misunderstandingFace" src="./img/emotions/misunderstanding.png" draggable="false">
<img class="pfp" id="shockingFace" src="./img/emotions/shocking.png" draggable="false">
<img class="pfp" id="tiredFace" src="./img/emotions/tired.png" draggable="false">
<img class="pfp" id="basicFace" src="./img/emotions/basic.png" draggable="false">
</div>
<div class="media-body">
<h3 class="name">Лось</h3>
<span class="status" id="statusSign">В сети</span>
</div>
</div>
<div class="mods">
<ul class="mods-choices">
<li class="active btn-change" id="btnBasic">Заводской</li>
<li class="btn-change" id="btnDead">Оригинал</li>
</ul>
</div>
</div>
<!-- Контейнер для обмена сообщениями -->
<div id="chatContainer" class="container chat-container">
</div>
<!-- Поле для набора сообщения и кнопка отправки -->
<div class="input-group" id="inputGroup">
<input id="input" class=" input" type="text">
<button id="sendBtn" class="btn" type="button">Отправить</button>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="./js/script.js" type="module"></script>
</body>
</html>