forked from BVNCodeTech/Whoody-VIRUS2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinteractive-features.html
119 lines (116 loc) · 6.56 KB
/
interactive-features.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Features</title>
<link rel="stylesheet" href="./static/css/interactive-features.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="mobile">
<h1>Unfortunately, this page is not meant for mobile users!</h1>
<div class="desc">Uhh oh... Don't worry you can still explore our features page or watch the product video for a more immersive experience.</div>
<div class="buttons">
<div class="button"><a href="./index.html">Home</a></div>
<div class="button"><a href="./features.html">Features</a></div>
</div>
</div>
<section class="features">
<div class="upper">
<div class="intro">
<div class="instructions">
<div class="instruction">Hold "A" to move left and "D" to move right</div>
<div class="instruction">Accelerate with "W" and "S"</div>
</div>
<div class="text">
<div class="title">Introducing whoody!</div>
<div class="tagline">The futuristic hoodie</div>
<div class="desc">Our Whoody is no ordinary hoodie.<br>It has some exhilarating features that you need to check out!</div>
</div>
</div>
<div class="feature">
<div class="text">
<div class="title">Colour Changing Features!</div>
<div class="desc">Whoody has a fine coating of "Photochromic Dye". This makes it change it's colour when exposed to sunlight. The colour change depends upon the amount of UV rays absorbed by the dye.</div>
</div>
</div>
<div class="feature">
<div class="text">
<div class="title">Made of Wolverine Material</div>
<div class="desc">The most advanced material, which is used in making parts of robots, is now being used in Whoody. Wolverine material allows the cloth to repair itself from accidental scratches plus it also extends the life of fabric.</div>
</div>
</div>
<div class="feature">
<div class="text">
<div class="title">Futuristic Self-Drying Capabilities</div>
<div class="desc">Did you forget your umbrella and it started pouring? And you had to cancel that very important meeting? With this 'Futuristic Self-Drying Technology', you no longer need to stress it. For our Whoody includes air amplifiers that instantly dry the hoodie and make it brand new!</div>
</div>
</div>
<div class="feature">
<div class="text">
<div class="title">Sustainable Material</div>
<div class="desc">For the well-being of our planet, Whoody is therefore made from fabrics which are environmental-friendly and uses natural resources efficiently, without compromising the needs of the future.</div>
</div>
</div>
<div class="feature">
<div class="text">
<div class="title">Temperature Adjusting</div>
<div class="desc">If you thought our Whoody is made only for winters, then let me tell you- it’s incorrect. This hoodie has air amplifiers that even work as air conditioners during summers. While in frosty winters, the heating pads underneath the upper layer provide warmth to the body and make you feel cozy. The heating pads and air amplifiers can be charged through the charging port provided in the hoodie.</div>
</div>
</div>
<div class="contact-container">
<div class="container">
<div class="content">
<div class="left-side">
<div class="address details">
<i class="fas fa-map-marker-alt"></i>
<div class="topic">Address</div>
<div class="text1">332 Suburban Toms River, </div>
<div class="text2"> New Jersey(NJ), 08753</div>
</div>
<div class="phone details">
<i class="fas fa-phone-alt"></i>
<div class="topic">Phone</div>
<div class="text1">(732) 240-4984</div>
<div class="text2">(843) 944-0151</div>
</div>
<div class="email details">
<i class="fas fa-envelope"></i>
<div class="topic">Email</div>
<div class="text1">[email protected]</div>
<div class="text2">[email protected]</div>
</div>
<div class="button"><a href="./index.html">Home</a></div>
<div class="button"><a href="./features.html">Features</a></div>
</div>
</div>
</div>
</div>
</div>
<div class="lower" style="background-image: url('./static/images/road.png');"></div>
<div class="car" style="background-image: url('./static/images/car.png');"></div>
</section>
<div class="block">
<div></div><div></div><div></div>
</div>
<div class="loading">
<div class="loading-text">Loading</div>
<span class="circles"></span><span class="circles"></span><span class="circles"></span><span class="circles"></span>
</div>
<div class="logo">
<div class="small-text">
<span class="line"></span><span class="company">aesthetics</span><span class="line"></span>
</div>
<div class="large-text">
<h1>Whoody!</h1>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.7.1/ScrollTrigger.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.7.1/gsap.min.js"></script>
<script src="./js/interactive-features.js"></script>
</body>
</html>