-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathreading_part5.html
More file actions
402 lines (357 loc) · 15.9 KB
/
reading_part5.html
File metadata and controls
402 lines (357 loc) · 15.9 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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reading - Part 5</title>
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="icon" href="img/favicon.png" type="image/x-icon">
<!-- 1. Tích hợp Driver.js (Tour) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.css"/>
<style>
/* CSS cho bài tập sắp xếp (Tái sử dụng từ Part 2/3) */
.quiz-card {
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
padding: 20px;
margin-bottom: 20px;
}
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}
.card-header h2 { margin: 0; font-size: 1.2em; color: #333; }
.heading-list {
list-style: none;
padding: 0;
margin: 0 0 20px 0;
}
.heading-list li {
background: #fff;
border: 1px solid #dee2e6;
margin-bottom: 8px;
padding: 12px 15px;
border-radius: 4px;
cursor: move; /* Con trỏ kéo thả */
transition: all 0.2s;
display: flex;
align-items: center;
}
.heading-list li:hover {
background: #f1f3f5;
border-color: #ced4da;
}
/* Số thứ tự đoạn văn (cố định bên trái để người dùng biết mình đang xếp cho đoạn nào) */
.paragraph-number {
font-weight: bold;
color: #007bff;
background: #e7f1ff;
width: 30px;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
margin-right: 15px;
flex-shrink: 0;
}
.sortable-ghost { opacity: 0.4; background: #cce5ff; border: 2px dashed #007bff; }
.feedback-message {
margin-bottom: 15px;
font-weight: bold;
text-align: center;
}
.correct { color: #28a745; }
.incorrect { color: #dc3545; }
.card-actions {
display: flex;
gap: 10px;
justify-content: center;
}
.answer-section {
margin-top: 15px;
padding: 15px;
background: #f1f8e9;
border-left: 4px solid #4caf50;
border-radius: 4px;
}
/* Style cho danh sách đáp án tiếng Anh */
.english-key-list {
list-style: none;
padding: 0;
margin: 10px 0;
}
.english-key-list li {
margin-bottom: 5px;
color: #2e7d32;
}
.english-key-list strong {
color: #1b5e20;
margin-right: 5px;
}
/* CSS cho nút Help/Tour */
.tour-btn {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #fff;
border: 1px solid #ddd;
color: #333;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
z-index: 999;
font-size: 24px;
transition: transform 0.2s, background-color 0.2s;
}
.tour-btn:hover {
transform: scale(1.1);
background-color: #f8f9fa;
}
/* Tùy chỉnh giao diện Driver.js */
.driver-popover.driverjs-theme {
background-color: #fff;
color: #333;
border-radius: 8px;
padding: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
max-width: 350px;
}
.driver-popover.driverjs-theme .driver-popover-title {
font-size: 18px;
font-weight: 700;
margin-bottom: 8px;
color: var(--primary-blue, #007bff);
}
.driver-popover.driverjs-theme .driver-popover-description {
font-size: 14px;
line-height: 1.6;
color: #555;
}
.driver-popover.driverjs-theme button {
background-color: var(--primary-blue, #007bff);
color: #fff;
text-shadow: none;
border: none;
border-radius: 4px;
padding: 6px 12px;
}
</style>
</head>
<body>
<header id="header-placeholder"></header>
<!-- 2. Nút kích hoạt lại Tour -->
<div class="tour-btn" id="restart-tour" title="Hướng dẫn sử dụng">❓</div>
<div class="content-pusher">
<div class="container">
<h1 style="text-align: center;" id="page-title">Reading - Part 5</h1>
<p style="text-align: center;" id="page-description">Matching Headings (Nối tiêu đề)</p>
<!-- HỘP GIẢI THÍCH -->
<div class="explanation-box">
<h3>💡 Phương pháp học Part 5</h3>
<p>
<strong>Nhiệm vụ:</strong> Có 7 đoạn văn và 8 tiêu đề (1 tiêu đề thừa). Bạn cần nối tiêu đề đúng vào đoạn văn tương ứng.
</p>
<p>
<strong>Cách luyện tập tại đây:</strong> Các tiêu đề đúng (7 tiêu đề) đã được chọn lọc nhưng bị <strong>xáo trộn thứ tự</strong>. Bạn hãy kéo thả chúng để sắp xếp lại theo đúng trình tự từ Đoạn 1 đến Đoạn 7.
</p>
</div>
<main id="quiz-container">
<!-- Các câu hỏi sẽ được tự động chèn vào đây -->
</main>
</div>
<footer id="footer-placeholder"></footer>
</div>
<!-- SCRIPTS -->
<script src="js/main.js"></script>
<script src="js/data-reading-part5.js"></script>
<!-- 2. SortableJS (Kéo thả) -->
<script src="https://cdn.jsdelivr.net/npm/sortablejs@latest/Sortable.min.js"></script>
<!-- 3. Driver.js (Tour) -->
<script src="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.js.iife.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
const quizContainer = document.getElementById('quiz-container');
// Kiểm tra xem dữ liệu có tồn tại không
if (typeof readingPart5Data === 'undefined') {
quizContainer.innerHTML = `<p class="error">Không tìm thấy dữ liệu (readingPart5Data). Vui lòng kiểm tra file js/data-reading-part5.js</p>`;
return;
}
const questions = readingPart5Data;
function shuffleArray(array) {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
return array;
}
questions.forEach((item, index) => {
// Tạo danh sách tiêu đề và xáo trộn
// originalIndex chính là thứ tự đúng (1, 2, 3...)
const originalFragmentsWithIndex = item.fragments.map((frag, i) => ({ text: frag, originalIndex: i + 1 }));
const shuffledFragments = shuffleArray([...originalFragmentsWithIndex]);
const card = document.createElement('div');
card.className = 'quiz-card';
// Không cần dùng dataset.key từ file data nữa, ta sẽ tự tạo key chuẩn 1-7
card.dataset.correctKey = Array.from({length: 7}, (_, i) => i + 1).join('-');
let listItems = '';
shuffledFragments.forEach((frag, i) => {
listItems += `<li data-original-index="${frag.originalIndex}">
<div class="paragraph-number">?</div>
<div class="heading-content">${frag.text}</div>
</li>`;
});
// Tạo danh sách đáp án tiếng Anh
let englishKeyList = '<ul class="english-key-list">';
item.fragments.forEach((frag, i) => {
englishKeyList += `<li><strong>${i + 1}.</strong> ${frag}</li>`;
});
englishKeyList += '</ul>';
card.innerHTML = `
<div class="card-header">
<h2>Đề bài ${index + 1}: ${item.title}</h2>
</div>
<p class="instructions">Kéo các tiêu đề bên dưới để khớp với thứ tự <strong>Đoạn 1 → Đoạn 7</strong>.</p>
<div class="list-container">
<!-- Danh sách số thứ tự cố định bên trái (Visual aid) -->
<ul class="heading-list sortable-list">
${listItems}
</ul>
</div>
<div class="feedback-message"></div>
<div class="card-actions">
<button class="action-btn check-answer-btn">Kiểm tra đáp án</button>
<button class="action-btn show-story-btn">Xem Đáp án & Mẹo</button>
</div>
<div class="answer-section" style="display: none;">
<h4>Đáp án đúng:</h4>
${englishKeyList}
<p style="margin-top:15px;"><strong>Câu chuyện gợi nhớ:</strong> ${item.story}</p>
</div>
`;
quizContainer.appendChild(card);
// --- KÍCH HOẠT KÉO THẢ ---
const sortableList = card.querySelector('.sortable-list');
new Sortable(sortableList, {
animation: 150,
ghostClass: 'sortable-ghost',
onEnd: function (evt) {
updateParagraphNumbers(sortableList);
}
});
updateParagraphNumbers(sortableList);
});
// Hàm cập nhật số thứ tự (1, 2, 3...) bên trái
function updateParagraphNumbers(list) {
const items = list.querySelectorAll('li');
items.forEach((item, index) => {
item.querySelector('.paragraph-number').textContent = index + 1;
});
}
quizContainer.addEventListener('click', function (e) {
if (e.target.classList.contains('check-answer-btn')) {
const card = e.target.closest('.quiz-card');
const list = card.querySelector('.sortable-list');
const feedbackDiv = card.querySelector('.feedback-message');
const correctKey = card.dataset.correctKey; // Chuỗi "1-2-3-4-5-6-7"
// Lấy thứ tự hiện tại của các item (dựa vào originalIndex)
const currentOrder = Array.from(list.querySelectorAll('li')).map(li => li.dataset.originalIndex).join('-');
card.classList.remove('correct', 'incorrect');
if (currentOrder === correctKey) {
card.classList.add('correct');
feedbackDiv.innerHTML = '🎉 Chính xác! Bạn đã sắp xếp đúng toàn bộ.';
feedbackDiv.className = 'feedback-message correct';
} else {
card.classList.add('incorrect');
feedbackDiv.innerHTML = '❌ Sai rồi! Hãy thử sắp xếp lại.';
feedbackDiv.className = 'feedback-message incorrect';
}
}
if (e.target.classList.contains('show-story-btn')) {
const answerSection = e.target.closest('.card-actions').nextElementSibling;
const isVisible = answerSection.style.display === 'block';
answerSection.style.display = isVisible ? 'none' : 'block';
}
});
// --- KÍCH HOẠT TOUR HƯỚNG DẪN ---
setTimeout(initReadingPart5Tour, 800);
});
// HÀM KHỞI TẠO TOUR CHO READING PART 5
function initReadingPart5Tour() {
const driver = window.driver.js.driver;
const driverObj = driver({
showProgress: true,
animate: true,
doneBtnText: 'Đã hiểu',
nextBtnText: 'Tiếp theo',
prevBtnText: 'Quay lại',
popoverClass: 'driverjs-theme',
steps: [
{
element: '.explanation-box',
popover: {
title: 'Reading Part 5',
description: 'Nhiệm vụ: Sắp xếp 7 tiêu đề vào đúng vị trí của 7 đoạn văn.',
side: "bottom",
align: 'center'
}
},
{
element: '.quiz-card:first-child .heading-list',
popover: {
title: 'Danh sách Tiêu đề',
description: 'Đây là các tiêu đề đã bị xáo trộn. Số bên trái (1, 2, 3...) đại diện cho <strong>Đoạn 1, Đoạn 2, Đoạn 3...</strong>',
side: "top",
align: 'center'
}
},
{
element: '.quiz-card:first-child .heading-list li:first-child',
popover: {
title: 'Kéo & Thả',
description: 'Hãy giữ chuột vào tiêu đề và kéo nó đến vị trí số thứ tự tương ứng mà bạn cho là đúng.',
side: "top",
align: 'center'
}
},
{
element: '.quiz-card:first-child .check-answer-btn',
popover: {
title: 'Kiểm tra',
description: 'Sau khi sắp xếp xong từ 1 đến 7, bấm nút này để biết kết quả.',
side: "top",
align: 'center'
}
},
{
element: '#restart-tour',
popover: {
title: 'Hỗ trợ',
description: 'Bấm vào đây để xem lại hướng dẫn.',
side: "left",
align: 'center'
}
}
]
});
// Logic tự động chạy lần đầu
showTourHint('hasSeenReadingPart5Tour', () => driverObj.drive());
// Gán sự kiện cho nút ?
document.getElementById('restart-tour').addEventListener('click', () => {
driverObj.drive();
});
}
</script>
</body>
</html>