-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path3D.html
More file actions
43 lines (40 loc) · 1.14 KB
/
3D.html
File metadata and controls
43 lines (40 loc) · 1.14 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
<html>
<script type="module" src="https://ajax.googleapis.com/ajax/libs/model-viewer/4.0.0/model-viewer.min.js"></script>
<style>
model-viewer {
width: 600px;
height: 600px;
background-color:DarkSlateGray;
} body {
background-color: DarkSlateGray;
}
a:link, a:visited {
background-color: white;
color: black;
border: 2px solid green;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color: green;
color: white;
}
</style>
<body>
<center>
<!-- Use it like any other HTML element -->
<model-viewer camera-controls auto-rotate touch-action="pan-y" alt="A 3D model of a sphere" src="https://drive.google.com/uc?export=download&id=15aajpQhG56et0YTR38Do6bcfk3h9TcpV">
</model-viewer>
<br>
<!-- W3 school code -->
<a href="default.asp" target="_blank">1</a>
<a href="default.asp" target="_blank">2</a>
<a href="https://woodwardiii-hs.github.io/ELA-3D/jail.html" target="_blank">3</a>
<a href="default.asp" target="_blank">4</a>
<br>
<p>Copyright © 2024-2025 WoodwardIII</p>
</center>
</body>
</html>