-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAI.html
More file actions
88 lines (88 loc) · 2.91 KB
/
AI.html
File metadata and controls
88 lines (88 loc) · 2.91 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>游戏 - humensmoc</title>
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/lib/font-awesome/css/all.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon/favicon-16x16.png">
<link rel="manifest" href="/images/favicon/site.webmanifest">
<link rel="shortcut icon" href="/images/favicon/favicon.ico">
<style>
.games-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.game-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
margin-top: 30px;
}
.game-card {
background: #fff;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
overflow: hidden;
transition: transform 0.3s;
}
.game-card:hover {
transform: translateY(-5px);
}
.game-preview {
width: 100%;
height: 200px;
object-fit: cover;
}
.game-info {
padding: 20px;
}
.game-title {
font-size: 1.5em;
margin-bottom: 10px;
}
.game-description {
color: #666;
margin-bottom: 15px;
}
.play-button {
display: inline-block;
padding: 8px 20px;
background-color: #222;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.play-button:hover {
background-color: #444;
}
</style>
</head>
<body>
<div class="nav-buttons" style="padding: 20px;">
<a href="/" class="nav-button">
<i class="fa fa-home"></i> 返回主页
</a>
</div>
<div class="games-container">
<h1>一些AI项目</h1>
<div class="game-grid">
<div class="game-card">
<img src="/images/StreamSim Image.png" alt="Upload Test Preview" class="game-preview">
<div class="game-info">
<h2 class="game-title">Stream Simulator</h2>
<p class="game-description">由AI模拟观众发送弹幕的直播模拟器,原网站:websim.com/@stackingbooks/streamsim/137</p>
<a href="/AI/streamsim/index.html" class="play-button">
<i class="fa fa-play"></i> Play
</a>
</div>
</div>
</div>
</div>
</body>
</html>