-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3main.html
35 lines (31 loc) · 1.11 KB
/
3main.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Custom Camera Animation</title>
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/[email protected]/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/"
}
}
</script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Camera Animation Example</h1>
<!-- Контейнер для кнопок -->
<div class="button-container" id="buttonContainer">
<!-- Кнопки для анимации камеры -->
<button id="view1Button">View 1</button>
<button id="view2Button">ADD SCENE</button>
<button id="view3Button">DELETE SCENE</button>
</div>
<!-- GSAP для анимации -->
<script src="./src/gsap.min.js"></script>
<!-- Подключение вашего JS-файла -->
<script type="module" src="3main.js"></script>
</body>
</html>