<!DOCTYPE html> <html lang="th"> <head> <meta charset="UTF-8"> <title>เกมจับคู่การ์ด (Memory Game)</title> <style> /* สไตล์พื้นฐาน */ body { font-family: sans-serif; background: #f0f0f0; display: flex; flex-direction: column; align-items: center; margin: 0; padding: 20px; } h1 { margin-bottom: 10px; } /* จัดเลย์เอาต์ของบอร์ดการ์ด */ #game-board { display: grid; grid-template-columns: repeat(4, 100px); grid-gap: 10px; } /* สไตล์การ์ด */ .card { width: 100px; height: 140px; background: #2e3d49; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 40px; color: #fff; cursor: pointer; position: relative; transform: perspective(600px) rotateY(0deg); transform-style: preserve-3d; transition: transform 0.5s; } /* การ์ดที่ถูกเปิด (flipped) */ .card.flipped { transform: perspective(600px) rotateY(180deg); } /* การ์ดที่จับคู่ถูกต้อง (match) */ .card.match { background: #4CAF50; cursor: default; } /* สร้างด้านหน้าการ์ด (front) และด้านหลัง (back) */ .card .front, .card .back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; display: flex; align-items: center; justify-content: center; border-radius: 8px; } /* ด้านหน้าการ์ด (แสดงสัญลักษณ์) */ .card .front { background: #fff; color: #000; transform: rotateY(180deg); font-size: 40px; } /* ด้านหลังการ์ด */ .card .back { background: #2e3d49; } /* ปุ่มรีเซ็ตเกม */ #reset { margin-top: 20px; padding: 10px 20px; font-size: 16px; border: none; background: #2e3d49; color: #fff; border-radius: 5px; cursor: pointer; } </style> </head> <body> <h1>เกมจับคู่การ์ด (Memory Game)</h1> <div id="game-board"></div> <button id="reset">เริ่มใหม่</button> <script> // อ้างอิงถึง element ต่างๆ const board = document.getElementById('game-board'); const resetButton = document.getElementById('reset'); // กำหนดสัญลักษณ์การ์ด (ใช้ emoji) const symbols = ['🍎', '🍌', '🍇', '🍓', '🍒', '🍍', '🥝', '🍉']; let cards = []; // ฟังก์ชันเริ่มต้นเกม function initializeGame() { cards = []; board.innerHTML = ''; // ล้างบอร์ดก่อนเริ่มใหม่ // สร้างการ์ดคู่จากสัญลักษณ์ const cardSymbols = symbols.concat(symbols); // รวมกันเป็น 16 ใบ // สุ่มตำแหน่งการ์ด cardSymbols.sort(() => 0.5 - Math.random()); // สร้าง element การ์ดแต่ละใบ cardSymbols.forEach(symbol => { const cardElement = document.createElement('div'); cardElement.classList.add('card'); cardElement.dataset.symbol = symbol; // สร้างด้านหน้าการ์ดและด้านหลัง const front = document.createElement('div'); front.classList.add('front'); front.textContent = symbol; const back = document.createElement('div'); back.classList.add('back'); back.textContent = '?'; cardElement.appendChild(front); cardElement.appendChild(back); // เพิ่ม event listener สำหรับการคลิกการ์ด cardElement.addEventListener('click', onCardClick); board.appendChild(cardElement); cards.push(cardElement); }); } // ตัวแปรสำหรับเก็บการ์ดที่เปิดอยู่ let firstCard = null; let secondCard = null; let lockBoard = false; // เมื่อคลิกการ์ด function onCardClick(e) { const clickedCard = e.currentTarget; // หากบอร์ดถูกล็อกหรือการ์ดถูกเปิดอยู่แล้ว ก็ไม่ดำเนินการใดๆ if (lockBoard || clickedCard === firstCard || clickedCard.classList.contains('match') || clickedCard.classList.contains('flipped')) return; flipCard(clickedCard); if (!firstCard) { firstCard = clickedCard; return; } secondCard = clickedCard; checkForMatch(); } // เปิดการ์ด (flip) function flipCard(card) { card.classList.add('flipped'); } // ปิดการ์ด (unflip) function unflipCard(card) { card.classList.remove('flipped'); } // ตรวจสอบว่าการ์ดทั้งสองใบตรงกันหรือไม่ function checkForMatch() { const isMatch = firstCard.dataset.symbol === secondCard.dataset.symbol; if (isMatch) { firstCard.classList.add('match'); secondCard.classList.add('match'); resetSelection(); checkGameOver(); } else { lockBoard = true; // รอ 1 วินาทีก่อนปิดการ์ดที่เปิด setTimeout(() => { unflipCard(firstCard); unflipCard(secondCard); resetSelection(); }, 1000); } } // รีเซ็ตการเลือกการ์ด function resetSelection() { firstCard = null; secondCard = null; lockBoard = false; } // ตรวจสอบว่าเกมจบหรือยัง (จับคู่ครบทุกใบ) function checkGameOver() { if (cards.every(card => card.classList.contains('match'))) { setTimeout(() => { alert('ยินดีด้วย! คุณจับคู่ครบทุกใบแล้ว!'); }, 500); } } // รีเซ็ตเกมใหม่ function resetGame() { firstCard = null; secondCard = null; lockBoard = false; initializeGame(); } resetButton.addEventListener('click', resetGame); // เริ่มเกมทันทีเมื่อโหลดหน้าเว็บ initializeGame(); </script> </body> </html>
Write, Run & Share HTML code online using OneCompiler's HTML online Code editor for free. It's one of the robust, feature-rich online Code editor for HTML language, running on the latest version HTML5. Getting started with the OneCompiler's HTML compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as HTML
. You can also specify the stylesheet information in styles.css
tab and scripts information in scripts.js
tab and start coding.
HTML(Hyper Text Markup language) is the standard markup language for Web pages, was created by Berners-Lee in the year 1991. Almost every web page over internet might be using HTML.
<!DOCTYPE html>
<html>
and ends with </html>
<h1>
to <h6>
where <h1>
is the highest important heading and <h6>
is the least important sub-heading.<p>..</p>
tag.<a>
tag.
<a href="https://onecompiler.com/html">HTML online compiler</a>
<img>
tag, where src
attribute consists of image name.<button>..</button>
tag<ul>
for unordered/bullet list and <ol>
for ordered/number list, and the list items are defined in <li>
.<a href="https://onecompiler.com/html">HTML online compiler</a>
CSS(cascading style sheets) describes how HTML elements will look on the web page like color, font-style, font-size, background color etc.
Below is a sample style sheet which displays heading in green and in Candara font with padding space of 25px.
body{
padding: 25px;
}
.title {
color: #228B22;
font-family: Candara;
}
<table>
tag.<tr>
tag<th>
tag<td>
tag<caption>
tag<script>
is the tag used to write scripts in HTML<script src="script.js"></script>