24/09/2025
TYPE WITH HINT
ĐỐI VỚI THẺ REVERSE
**** FRONT TEMPLATE ***
{{ Reverse}}
{{BackText}}
{{type:FrontText}}
(function () {
// 1. Lấy đáp án từ FrontText
var raw = `{{FrontText}}`.trim();
// 2. Nếu có nhiều đáp án ngăn cách bằng ; → lấy mục đầu tiên
raw = raw.split(';')[0].trim();
// 3. Bỏ thẻ HTML và phần trong ngoặc (...)
raw = raw.replace(/]*>/g, '')replace(/\([^)]*\)/g, ' ')trim();
if (!raw) return;
// 4. Tách từ
var words = raw.split(/\s+/).filter(Boolean);
// 5. Mỗi từ → chữ đầu + số "_" = độ dài còn lại
function maskWord(w) {
var core = w.replace(/[^A-Za-z]/g, '');
if (!core) return '';
var first = core.charAt(0).toLowerCase();
var rest = Array(Math.max(0, core.length - 1)).fill('_').join(' ');
return first + (rest ? ' ' + rest : '');
}
var masked = words.map(maskWord).filter(Boolean).join(' ');
// 6. Gán ra màn hình
document.getElementById('hintline').textContent = masked;
})();
{{Image}}
{{BackAudio}}
{{/Add Reverse}}
**** BACK TEMPLATE ***
{{BackText}}
{{type:FrontText}}
{{FrontText}}
{{FrontAudio}}
{{Image}}
**** STYLING ***
card {
font-family: calibri;
font-size: 60px;
text-align: center;
color: black;
background-color: white;
}
{
font-size:40px !important;
text-align: center;
}hintline {
color: ;
font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 35px;
margin-top: 6px;
}typein {
margin-top: 12px;
font-size: 22px;
}
Send a message to learn more