-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
44 lines (42 loc) · 1.48 KB
/
main.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
<!DOCTYPE html>
<html lang="ko">
<head>
<h1>EZHitomiConnectLind</h1>
<h5>!모바일,PC 모두 지원</h5>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
input {
width: 150px; /* 너비 설정 */
height: 50px; /* 높이 설정 */
color: rgba(0, 0, 0, 100);
font-size: 15px;
}
button {
width: 75px; /* 너비 설정 */
height: 50px; /* 높이 설정 */
font-size: 15px;
cursor: pointer;
}
</style>
</head>
<body>
<input type="text" id="textBox" placeholder="품번">
<button id="btn">연결</button>
<script>
const textBox = document.querySelector('#textBox');
const btn = document.querySelector('#btn');
btn.addEventListener('click', () => {
const textBoxValue = textBox.value;
if (textBoxValue && !isNaN(textBoxValue)) {
window.location.href = `https://hitomi.la/reader/${textBoxValue}.html`;
} else {
alert("품번(숫자)를 입력해주세요.");
}
});
</script>
</body>
<footer>
<h4>VPN없이 사용 가능, 기본적으로 품번을 빠르게 사용하게 해줍니다. <br>(만약 크롬 브라우저에서 오류가 난다면 https://netxhack.com/etc/https-sni-block-chrome 참고)<br>Made by Lin_d777 / discord:lin_d777, github:Lindlove</h4>
</footer>
</html>