-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3dParallax.html
46 lines (38 loc) · 1.4 KB
/
3dParallax.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
36
37
38
39
40
41
42
43
44
45
46
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Parallax</title>
<link rel="stylesheet" href="src/static/css/default.css">
<link rel="stylesheet" href="src/static/css/3dParallax.css">
</head>
<body>
<div class="navBar">
<div class="icon"><a href="/HUI">HUI</a></div>
<div class="cursor" color="#F63E61"></div>
</div>
<div class="container">
<div class="productBox">
<h2 class="productName">iPhone X</h2>
<a href="" class="productLink">See Now</a>
<div class="circle"></div>
<img src="src/static/img/iphone1.png" class="product">
</div>
<div class="productBox">
<h2 class="productName">iPhone X</h2>
<a href="" class="productLink">See Now</a>
<div class="circle"></div>
<img src="src/static/img/iphone2.png" class="product">
</div>
<div class="productBox">
<h2 class="productName">iPhone X</h2>
<a href="" class="productLink">See Now</a>
<div class="circle"></div>
<img src="src/static/img/iphone3.png" class="product">
</div>
</div>
</body>
<script src="src/static/js/cursor.js"></script>
<script src="src/static/js/vanilla-tilt.min.js"></script>
<script src="src/static/js/3dParallax.js"></script>
</html>