46 lines
1.6 KiB
HTML
46 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Semplice Island FPS</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="start">
|
|
<video autoplay muted loop id="bg-video">
|
|
<source src="./video/background.mp4" type="video/mp4">
|
|
</video>
|
|
<div class="overlay"></div>
|
|
<div class="content">
|
|
<div class="top-section">
|
|
<img src="./img/titolo.png" alt="titolo" class="main-title" />
|
|
</div>
|
|
<div class="container bottom-section">
|
|
<div class="item left">
|
|
<div class="controls-box">
|
|
<h3>Controlli</h3>
|
|
<p><kbd>W</kbd><kbd>A</kbd><kbd>S</kbd><kbd>D</kbd> Movimento</p>
|
|
<p><kbd>Mouse</kbd> Camera</p>
|
|
</div>
|
|
</div>
|
|
<div class="item center">
|
|
<span class="pulse-text">Clicca per giocare</span>
|
|
</div>
|
|
<div class="item right"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="punti">Rifiuti: <span id="score">0</span></div>
|
|
<div id="tempo">Tempo: <span id="time">XX:XX</span></div>
|
|
<div id="crosshair">+</div>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"three": "https://unpkg.com/three@0.160.0/build/three.module.js",
|
|
"three/addons/": "https://unpkg.com/three@0.160.0/examples/jsm/"
|
|
}
|
|
}
|
|
</script>
|
|
<script type="module" src="script-test.js"></script>
|
|
</body>
|
|
</html> |