-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsection2.html
More file actions
33 lines (33 loc) · 1.85 KB
/
section2.html
File metadata and controls
33 lines (33 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Orbital Movement</title>
<link rel="stylesheet" href="section2.css">
</head>
<body>
<div class="container">
<div class="center-image">
<img src="/Container.png" alt="Center Image">
</div>
<div class="orbit-lines">
<div class="orbit-line" style="width: 100%; height: 100%;"></div>
<div class="orbit-line" style="width: 90%; height: 90%;"></div>
<div class="orbit-line" style="width: 80%; height: 80%;"></div>
<!-- <div class="orbit-line" style="width: 70%; height: 70%;"></div>
<div class="orbit-line" style="width: 60%; height: 60%;"></div>
<div class="orbit-line" style="width: 50%; height: 50%;"></div> -->
</div>
<div class="orbit">
<img src="path/to/icon1.png" alt="Icon 1" class="icon clockwise" data-tooltip="Icon 1 Tooltip" style="animation-duration: 10s;">
<img src="path/to/icon2.png" alt="Icon 2" class="icon anticlockwise" data-tooltip="Icon 2 Tooltip" style="animation-duration: 12s;">
<img src="path/to/icon3.png" alt="Icon 3" class="icon clockwise" data-tooltip="Icon 3 Tooltip" style="animation-duration: 14s;">
<img src="path/to/icon4.png" alt="Icon 4" class="icon anticlockwise" data-tooltip="Icon 4 Tooltip" style="animation-duration: 16s;">
<img src="path/to/icon5.png" alt="Icon 5" class="icon clockwise" data-tooltip="Icon 5 Tooltip" style="animation-duration: 18s;">
<img src="path/to/icon6.png" alt="Icon 6" class="icon anticlockwise" data-tooltip="Icon 6 Tooltip" style="animation-duration: 20s;">
</div>
</div>
<script src="script.js"></script>
</body>
</html>