-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (131 loc) · 4.04 KB
/
index.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!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>UI Spiderman</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Mukta:wght@300;400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/style.css" />
<script src="./js/svg-inject.min.js"></script>
</head>
<body>
<!-- ======= LOADING ======= -->
<section class="bg-loader">
<img
onload="SVGInject(this)"
src="./svg/logo-spiderman.svg"
alt="Logo UI SpiderMan"
/>
</section>
<!-- ======= HEADER ======= -->
<header>
<nav class="navbar">
<div class="nav-menu">
<div class="logo">
<img
onload="SVGInject(this)"
src="./svg/logo-spiderman.svg"
alt="Logo UI SpiderMan"
/>
</div>
<ul class="nav-list">
<li><a href="" class="nav-link">Home</a></li>
<li><a href="" class="nav-link">Story</a></li>
<li><a href="" class="nav-link">Wallpaper</a></li>
<li><a href="" class="nav-link">#BeYourself</a></li>
</ul>
</div>
<div class="nav-social">
<img
onload="SVGInject(this)"
src="./svg/icon-facebook.svg"
alt="ícone do Facebook"
/>
<img
onload="SVGInject(this)"
src="./svg/icon-instagram.svg"
alt="ícone do Instagram"
/>
<img
onload="SVGInject(this)"
src="./svg/icon-youtube.svg"
alt="ícone do youtube"
/>
<img
onload="SVGInject(this)"
src="./svg/icon-twitter.svg"
alt="ícone do twitter"
/>
</div>
<div class="bx mr-2"></div>
</nav>
</header>
<!-- ======= BG-VIDEO ======= -->
<section class="bg-video">
<video class="video" autoplay muted loop>
<source src="./video/spiderman2.mp4" type="video/mp4" />
</video>
</section>
<!-- ======= CONTAINER ======= -->
<section class="container">
<div class="container-item-1 item-1">
<div class="px-1">
<img
onload="SVGInject(this)"
src="./img/spiderman-text.png"
alt="SPIDER-MAN"
/>
</div>
<p class="my-2 item-2">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tempore
repellendus adipisci nam obcaecati facilis veniam, consequuntur iusto
pariatur ea quas illo? Voluptate fugiat nemo, veniam iure neque optio
est quam!
</p>
<div class="item-3">
<a href="" class="btn">Pre-order now</a>
<a href="" class="ml-2 btn-secondary">Watch the teaser</a>
</div>
<div class="my-1 flex align-items-center mt-1 item-5">
<img
onload="SVGInject(this)"
class="w-auto"
src="./svg/ps.svg"
alt=""
/>
<img
onload="SVGInject(this)"
class="w-auto ml-2"
src="./svg/marvel.svg"
alt=""
/>
</div>
</div>
<div class="container-item-2 item-6">
<div class="js-tilt">
<img
class="spiderman"
onload="SVGInject(this)"
src="./img/spiderman.png"
alt=""
/>
</div>
</div>
</section>
<!-- ======= JS ======= -->
<script src="./js/app.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tilt.js/1.2.1/tilt.jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TweenMax.min.js"></script>
<script>
$(".js-tilt").tilt({
perspective: 2000,
});
</script>
</body>
</html>