This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (57 loc) · 2.88 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
<title>Chatbox</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="assets\chaticon.png">
</head>
<body>
<div class="title">
<h1 style="margin-bottom: 1px; margin-top: 5px;">CHATBOX</h1>
<div id="alert"><p>Javasript chưa được load! Để sử dụng các chức năng của web, bạn phải Bật Javasript</p></div>
</div>
<div id="main">
<details id="list" style="margin-left: 0px;">
<summary>Trực tuyến</summary>
</details>
<div id="content" onscroll="showScrollButton()">
<!-- Chat will be shown here -->
</div>
<button id="ScrollButton" onclick="document.getElementById('content').scrollTop = document.getElementById('content').scrollHeight;" hidden>↓</button>
<div id="sendzone">
<input class="chat" type="text" placeholder="Nội dung" id="noidung" disabled>
<button class="chat" id="send" onclick="send(document.getElementById('noidung').value);" disabled>Gửi</button>
</div>
<details id="custom">
<summary>Tùy chỉnh</summary>
<b>Paste Link Hình ảnh vào các ô dưới đây (Bỏ trống = Mặc định)</b>
<div style="position: relative;">
<br>
Ảnh nền: <br> <input type="url" id="custom_background" style="width:40%; height:20px; margin-top: 3px;">
<br>
<br>
Ảnh nền Chat: <br> <input type="url" id="custom_background_content" style="width: 40%; height: 20px; margin-top: 3px;">
<br>
<br>
Ảnh nền Danh sách Trực tuyến: <br> <input type="url" id="custom_background_list" style="width: 40%; height: 20px; margin-top: 3px;">
<br>
<br>
Ảnh nền mục Tùy chỉnh: <br> <input type="url" id="custom_background_custom" style="width: 40%; height: 20px; margin-top: 3px;">
<br>
<br>
<button onclick="saveCustom()">Lưu</button>
<button style="margin-left: 3px" onclick="customtodefault()">Đặt về Mặc định</button>
</div>
<br>
</details>
<div style="text-align:center; margin-top: 10px; margin-bottom: 10px; color:grey;">
<b style="font-size: large; margin-bottom:0px">classic-chatbox-client</b>
<p style="font-size: smaller; margin-top:0px">MIT License | <a href="https://github.com/thanhgaming5550/classic-chatbox-client/tree/v2" target=”_blank”>Source</a></p>
</div>
<div style="width: 100%; height: 10px;"></div>
</div>
<script src="script.js"></script>
</body>
</html>