|
|
!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>贪吃蛇游戏</title>
<style>
body {
font-family: 'Arial', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
margin: 0;
padding: 20px;
min-height: 100vh;
}
.game-container {
background: white;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
padding: 20px;
margin-top: 20px;
}
canvas {
border: 2px solid #333;
border-radius: 5px;
background: #f0f0f0;
}
.controls {
display: flex;
justify-content: space-between;
width: 100%;
margin-top: 20px;
}
.score-panel {
font-size: 1.2em;
margin-bottom: 15px;
}
button {
background: #4CAF50;
color: white;
border: none;
padding: 8px 15px;
border-radius: 5px;
cursor: pointer;
|
|