<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>เกมงูสไตล์โนเกีย</title> <style> body { margin: 0; background: linear-gradient(135deg, #1e3c72, #2a5298); display: flex; justify-content: center; align-items: center; height: 100vh; font-family: Arial, sans-serif; } canvas { background-color: #111; box-shadow: 0 0 20px rgba(0,255,0,0.7); border: 2px solid #fff; } </style> </head> <body> <canvas id="gameCanvas" width="500" height="500"></canvas> <script> const canvas = document.getElementById("gameCanvas"); const ctx = canvas.getContext("2d"); // กำหนดขนาดของแต่ละช่อง const cellSize = 25; const cols = canvas.width / cellSize; const rows = canvas.height / cellSize; // สถานะเกม: "start", "playing", "gameover" let gameState = "start"; let gameInterval; // กำหนดงูเริ่มต้น (ความยาว 5 เซ็กเมนต์) โดยหัวอยู่ด้านหน้า let snake = [ { x: 10, y: 10 }, { x: 9, y: 10 }, { x: 8, y: 10 }, { x: 7, y: 10 }, { x: 6, y: 10 } ]; // ทิศทางเริ่มต้น (เคลื่อนที่ไปทางขวา) let dx = 1; let dy = 0; let food = {}; generateFood(); // ฟังก์ชันวาดหน้าจอเริ่มต้น (Start Screen) function drawStartScreen() { clearCanvas(); ctx.fillStyle = "#fff"; ctx.font = "40px Arial"; ctx.textAlign = "center"; ctx.fillText("สตาร์ท", canvas.width / 2, canvas.height / 2); ctx.font = "20px Arial"; ctx.fillText("กดปุ่มใด ๆ เพื่อเริ่ม", canvas.width / 2, canvas.height / 2 + 40); } // ฟังก์ชันวาดพื้นหลัง function clearCanvas() { ctx.fillStyle = "#111"; ctx.fillRect(0, 0, canvas.width, canvas.height); } // ฟังก์ชันวาดสี่เหลี่ยมมุมโค้ง ใช้สำหรับวาดส่วนของงู (ยกเว้นหัว) function drawRoundedRect(ctx, x, y, width, height, radius) { ctx.beginPath(); ctx.moveTo(x + radius, y); ctx.lineTo(x + width - radius, y); ctx.quadraticCurveTo(x + width, y, x + width, y + radius); ctx.lineTo(x + width, y + height - radius); ctx.quadraticCurveTo(x + width, y + height, x + width - radius, y + height); ctx.lineTo(x + radius, y + height); ctx.quadraticCurveTo(x, y + height, x, y + height - radius); ctx.lineTo(x, y + radius); ctx.quadraticCurveTo(x, y, x + radius, y); ctx.closePath(); ctx.fill(); } // ฟังก์ชันวาดหัวงูให้ดูน่ารัก function drawSnakeHead(segment) { let x = segment.x * cellSize; let y = segment.y * cellSize; let centerX = x + cellSize / 2; let centerY = y + cellSize / 2; // สร้าง gradient สีสำหรับหัวงู let gradient = ctx.createLinearGradient(x, y, x + cellSize, y + cellSize); gradient.addColorStop(0, "#00ff00"); gradient.addColorStop(1, "#008000"); ctx.fillStyle = gradient; // วาดหัวงูเป็นวงกลม ctx.beginPath(); ctx.arc(centerX, centerY, cellSize / 2 - 2, 0, Math.PI * 2); ctx.fill(); // วาดตาขาวและรูม่านตาดำ (ตาซ้าย) ctx.fillStyle = "#fff"; ctx.beginPath(); ctx.arc(centerX - 5, centerY - 3, 3, 0, Math.PI * 2); ctx.fill(); ctx.fillStyle = "#000"; ctx.beginPath(); ctx.arc(centerX - 5, centerY - 3, 1.5, 0, Math.PI * 2); ctx.fill(); // วาดตาขาวและรูม่านตาดำ (ตาขวา) ctx.fillStyle = "#fff"; ctx.beginPath(); ctx.arc(centerX + 5, centerY - 3, 3, 0, Math.PI * 2); ctx.fill(); ctx.fillStyle = "#000"; ctx.beginPath(); ctx.arc(centerX + 5, centerY - 3, 1.5, 0, Math.PI * 2); ctx.fill(); // วาดรอยยิ้ม ctx.strokeStyle = "#000"; ctx.lineWidth = 1; ctx.beginPath(); ctx.arc(centerX, centerY, 5, 0.2 * Math.PI, 0.8 * Math.PI); ctx.stroke(); } // ฟังก์ชันวาดงู (ถ้าเป็นหัวก็วาดสัญลักษณ์น่ารัก) function drawSnake() { for (let i = 0; i < snake.length; i++) { let segment = snake[i]; let x = segment.x * cellSize; let y = segment.y * cellSize; if (i === 0) { // วาดหัวงูให้ดูน่ารัก drawSnakeHead(segment); } else { // วาดลำตัวงู let gradient = ctx.createLinearGradient(x, y, x + cellSize, y + cellSize); gradient.addColorStop(0, "#00ff00"); gradient.addColorStop(1, "#008000"); ctx.fillStyle = gradient; drawRoundedRect(ctx, x + 2, y + 2, cellSize - 4, cellSize - 4, 5); } } } // ฟังก์ชันวาดอาหาร (ผลไม้) ด้วย radial gradient สีแดง function drawFood() { let x = food.x * cellSize + cellSize / 2; let y = food.y * cellSize + cellSize / 2; let radius = cellSize / 2 - 2; let gradient = ctx.createRadialGradient(x, y, radius * 0.1, x, y, radius); gradient.addColorStop(0, "#ff0000"); gradient.addColorStop(1, "#800000"); ctx.fillStyle = gradient; ctx.beginPath(); ctx.arc(x, y, radius, 0, Math.PI * 2); ctx.fill(); } // ฟังก์ชันวาดคะแนน function drawScore() { ctx.fillStyle = "#fff"; ctx.font = "20px Arial"; ctx.textAlign = "left"; ctx.fillText("Score: " + (snake.length - 5), 10, 25); } // ฟังก์ชันอัปเดตเกม (เคลื่อนที่งู, ตรวจสอบการชน, วาดใหม่) function update() { // คำนวณตำแหน่งหัวงูใหม่ let head = snake[0]; let newX = head.x + dx; let newY = head.y + dy; let newHead = { x: newX, y: newY }; // ตรวจสอบการชนกับขอบหรือกับตัวเอง if (newX < 0 || newX >= cols || newY < 0 || newY >= rows || checkCollision(newHead, snake)) { return gameOver(); } // ใส่หัวใหม่เข้าไปในงู snake.unshift(newHead); // ถ้างูกินอาหาร (ตำแหน่งหัวตรงกับอาหาร) if (newX === food.x && newY === food.y) { generateFood(); } else { // หากไม่ได้กิน ให้ตัดส่วนท้ายออก snake.pop(); } clearCanvas(); drawFood(); drawSnake(); drawScore(); } // ตรวจสอบว่าหัวงูชนกับส่วนใดของตัวเองหรือไม่ function checkCollision(head, snakeArray) { for (let i = 0; i < snakeArray.length; i++) { if (head.x === snakeArray[i].x && head.y === snakeArray[i].y) { return true; } } return false; } // ฟังก์ชันสร้างตำแหน่งอาหารใหม่ (สุ่มภายในตาราง) function generateFood() { food = { x: Math.floor(Math.random() * cols), y: Math.floor(Math.random() * rows) }; // ตรวจสอบว่าอาหารไม่ได้อยู่ในตำแหน่งของงู for (let i = 0; i < snake.length; i++) { if (food.x === snake[i].x && food.y === snake[i].y) { return generateFood(); } } } // จัดการเปลี่ยนทิศทางของงู (เฉพาะเมื่อเกมกำลังเล่น) function changeDirection(event) { const key = event.key; // ป้องกันไม่ให้กลับทิศทางตรงกันข้าม if (key === "ArrowUp" && dy !== 1) { dx = 0; dy = -1; } else if (key === "ArrowDown" && dy !== -1) { dx = 0; dy = 1; } else if (key === "ArrowLeft" && dx !== 1) { dx = -1; dy = 0; } else if (key === "ArrowRight" && dx !== -1) { dx = 1; dy = 0; } } // ฟังก์ชันเมื่อเกมจบ (แสดงข้อความ Game Over) function gameOver() { clearInterval(gameInterval); gameState = "gameover"; ctx.fillStyle = "rgba(0, 0, 0, 0.5)"; ctx.fillRect(0, 0, canvas.width, canvas.height); ctx.fillStyle = "#fff"; ctx.font = "40px Arial"; ctx.textAlign = "center"; ctx.fillText("Game Over", canvas.width / 2, canvas.height / 2); ctx.font = "20px Arial"; ctx.fillText("รีเฟรชเพื่อเล่นใหม่", canvas.width / 2, canvas.height / 2 + 40); } // เริ่มเกมเมื่อกดปุ่ม (ในหน้าจอสตาร์ท) document.addEventListener("keydown", function(event) { if (gameState === "start") { gameState = "playing"; // เริ่มอัปเดตเกมทุก 200 มิลลิวินาที (ความเร็วเริ่มต้นช้าลง) gameInterval = setInterval(update, 200); // หากกดปุ่มลูกศรตั้งแต่แรก ก็เปลี่ยนทิศทางตามที่กด changeDirection(event); } else if (gameState === "playing") { changeDirection(event); } }); // แสดงหน้าจอสตาร์ทเมื่อโหลดหน้าเว็บ drawStartScreen(); </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>