forked from Ahaanv19/SD_Auto_Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
41 lines (39 loc) · 1.08 KB
/
base.html
File metadata and controls
41 lines (39 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animated Background</title>
<script src="js/three.r119.min.js"></script>
<script src="js/vanta.clouds2.min.js"></script>
<style>
/* Make the body and html take up the full height and remove default margin */
html, body {
height: 100%;
margin: 0;
overflow: hidden; /* Prevents scrollbars */
}
/* Ensure the monitor container takes up the full viewport */
#monitor {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<!-- Container for the animated background -->
<div id="monitor"></div>
<script>
VANTA.CLOUDS2({
el: "#monitor",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
skyColor: 0x4087af,
});
</script>
</body>
</html>