-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
299 lines (276 loc) · 9.86 KB
/
index.html
File metadata and controls
299 lines (276 loc) · 9.86 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
<!DOCTYPE html>
<html lang="ko">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4YZHC1G9FN"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4YZHC1G9FN');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mong - Large Grid Word Puzzle vs Computer | Soosooland</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Find hidden words in this puzzle game. Test your vocabulary and word search skills. Free online brain game.">
<meta name="keywords" content="Brain Rot Prevention Games ,K-game for Brain Training, Korean Educational Games,word search,brain game, puzzle game, vocabulary game">
<meta name="author" content="Soosooland">
<!-- Open Graph -->
<meta property="og:title" content="Mong - Large Grid Word Puzzle">
<meta property="og:description" content="Big grid word search against computer. Test your vocabulary in this expanded puzzle challenge.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://soosooland.com/mong/">
<meta property="og:image" content="https://soosooland.com/images/worpuzz.jpeg">
<meta property="og:site_name" content="Soosooland">
<link rel="canonical" href="https://soosooland.com/mong/">
<link rel="stylesheet" href="https://soosooland.com/css/protection.css">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "VideoGame",
"name": "Mong",
"description": "Large grid word puzzle game against computer",
"url": "https://soosooland.com/mong/",
"genre": ["Puzzle", "Word"],
"gamePlatform": "Web browser",
"playMode": "SinglePlayer",
"inLanguage": ["en", "ko"]
}
</script>
<script src="https://soosooland.com/js/protection.js"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box; /* 이거 특히 중요! */
}
body {
font-family: 'Noto Sans KR', sans-serif;
background-color: #FFF2EB; /* 전체 배경: 피치 크림톤 */
margin: 0;
padding: 40px;
text-align: center;
color: #7A2E2E; /* 기본 텍스트: 부드러운 브라운 */
}
h1 {
font-size: clamp(1.3rem, 3.7vw, 1.9rem);
color: #FF9494; /* 포인트 핑크 */
margin-bottom: 20px;
}
.description {
margin-bottom: 30px;
font-size: 1.1em;
line-height: 1.6;
background-color: #FFE8CD; /* 설명 배경: 연한 오렌지 */
padding: 20px;
border-radius: 10px;
max-width: 900px;
margin-left: auto;
margin-right: auto;
color: #7A2E2E;
}
.row-container {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 60px;
max-width: 800px;
margin: 0 auto;
flex-wrap: wrap;
}
.column {
flex: 1 1 300px;
}
.column h2 {
color: #FF9494;
margin-bottom: 10px;
border-bottom: 2px solid #FF9494;
padding-bottom: 5px;
font-size: 1.3em;
}
.btn-list {
display: flex;
flex-direction: column;
gap: 10px;
align-items: stretch;
}
.btn-list button {
padding: 10px;
font-size: 15px;
border: none;
border-radius: 8px;
background-color: #FFD6BA; /* 버튼 기본색: 살구톤 */
color: #7A2E2E;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
}
.btn-list button:hover {
background-color: #FF9494;
color: white;
}
.description button {
margin: 4px 6px;
padding: 6px 10px;
font-size: 13px;
background-color: #FF9494;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
}
.description button:hover {
background-color: #FF7373;
}
.redirect-message {
background-color: #FF9494;
color: white;
padding: 15px;
border-radius: 8px;
margin: 20px auto;
max-width: 600px;
font-size: 1.1em;
}
.back-button {
position: absolute;
top: 20px;
left: 20px;
padding: 10px 20px;
font-size: 1em;
background-color: #FFD6BA;
color: #7A2E2E;
border: none;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
z-index: 100;
}
.back-button:hover {
background-color: #FF9494;
color: white;
}
</style>
</head>
<body>
<button class="back-button" onclick="location.href='https://soosooland.com/'">
Soosooland </button>
<h1>WORPUZZ MONG </h1>
<div class="description">
컴퓨터와 교대로 격자를 클릭하여 숨겨진 단어를 찾아가는 1인용 단어 찾기 게임입니다.<br>
격자가 영어는 가로19*세로12이고, 한글은 가로17*세로10가 있는 큰 사이즈입니다.<br>
영어 게임은 3~16글자의 영어단어가 들어있습니다.<br>
단어는 가로, 세로, 대각선 방향으로 숨겨져 있으며, 마지막 글자를 열면 해당 단어를 획득합니다.<br>
더 많은 단어를 찾는 것이 목표이며, 승패 없이 "게임 종료"로 마무리됩니다.<br><br>
🍀 클로버를 열면 상하좌우 4칸이 함께 열리고 한 번 더 턴을 가집니다.<br>
<img src="daisy_64x64.png" alt="데이지" style="width:21px; height:21px; vertical-align:middle;"> 데이지를 열면 주변 8칸이 모두 열리며 마찬가지로 추가 턴이 주어집니다.<br>
아래에서 원하는 워드풀을 선택해 게임을 시작하세요.<br>
This is a single-player Worpuzz game where you take turns with the computer to uncover hidden words in the grid.<br>
The grid is large-sized: 19×12 for English and 17×10 for Korean.<br>
The English game contains English words from 3 to 16 letters.<br>
Words are hidden horizontally, vertically, or diagonally, and you earn the word by revealing its final letter.<br>
Your goal is to find more words than the computer. There is no winner or loser — the game ends with "Game Over."<br>
🍀 If you find a clover, the four adjacent tiles (up, down, left, right) will open, and you get an extra turn.<br>
<img src="daisy_64x64.png" alt="데이지" style="width:21px; height:21px; vertical-align:middle;"> If you find a daisy, all eight surrounding tiles will open, and you also get an extra turn.<br>
Choose a word pool below to begin the game.</div>
<div class="row-container">
<div class="column">
<h2>ENGLISH</h2>
<div class="btn-list">
<button onclick="startGame('e1', true)">A1 Oxford Beginner</button>
<button onclick="startGame('e2', true)">A2 Oxford Elementary</button>
<button onclick="startGame('e3', true)">B1 Oxford Intermediate</button>
<button onclick="startGame('e4', true)">B2 Oxford Upper-Intermediate</button>
<button onclick="startGame('e5', true)">C1 Oxford Advanced</button>
<button onclick="startGame('e6', true)">Tour</button>
<button onclick="startGame('e7', true)">Organism</button>
<button onclick="startGame('e8', true)">Sound Symbolism</button>
<button onclick="startGame('e9', true)">US States & Cities</button>
<button onclick="startGame('e10', true)">US Landmarks</button>
</div>
</div>
<div class="column">
<h2>KOREAN</h2>
<div class="btn-list">
<button onclick="startGame('k1', false)">사자성어/고사성어</button>
<button onclick="startGame('k2', false)">음성상징어(의태어/의성어)</button>
<button onclick="startGame('k3', false)">여행</button>
<button onclick="startGame('k4', false)">동물과 식물</button>
<button onclick="startGame('k5', false)">생활한자어</button>
<button onclick="startGame('k6', false)">기초 단어</button>
</div>
</div>
</div>
<script>
window.addEventListener('DOMContentLoaded', () => {
const screenWidth = window.innerWidth;
// 화면이 670px 이하일 때 워퍼즈로 리다이렉트
if (screenWidth < 670 && !sessionStorage.getItem('fromMini')) {
redirectToWorpuzz();
}
});
// 뒤로가기 대응
window.addEventListener('pageshow', (event) => {
if (event.persisted) { // 캐시에서 복원된 경우
const screenWidth = window.innerWidth;
if (screenWidth < 670 && !sessionStorage.getItem('fromMini')) {
redirectToWorpuzz();
}
}
});
function redirectToWorpuzz() {
const overlay = document.createElement('div');
overlay.innerHTML = `
<div style="
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
display: flex;
justify-content: center;
align-items: center;
z-index: 99999;
color: white;
text-align: center;
font-family: inherit;
">
<div style="padding: 30px;">
<div style="font-size: 48px; margin-bottom: 20px;">⚠️</div>
<div style="font-size: 20px; font-weight: bold; margin-bottom: 15px;">
화면이 너무 작습니다
</div>
<div style="font-size: 16px; margin-bottom: 10px;">
Screen width must be at least 760px
</div>
<div style="font-size: 14px; opacity: 0.8; margin-bottom: 25px;">
워퍼즈로 자동 이동합니다...<br>
Redirecting to Worpuzz...
</div>
<div class="loading-dots" style="font-size: 30px; letter-spacing: 5px;">
⚡⚡⚡
</div>
</div>
</div>
<style>
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}
.loading-dots {
animation: blink 1.5s infinite;
}
</style>
`;
document.body.appendChild(overlay);
setTimeout(() => {
window.location.href = 'https://soosooland.com/worpuzz';
}, 1500);
}
function startGame(poolName, isEnglish) {
const page = isEnglish ? 'mong_eng.html' : 'mong_kor.html';
location.href = `${page}?pool=${poolName}`;
}
</script>
</body>
</html>