-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (73 loc) · 3.09 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
<!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>Fisayo Fosudo Portfolio by Israel Mitolu </title>
<!--Favicon-->
<link rel="shortcut icon" href="/assets/images/favicon.ico" />
<link rel="stylesheet" href="/assets/css/styles.min.css" />
<!-- GSAP -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TweenMax.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/gsap.min.js"></script>
<!-- ===== BOX ICONS ===== -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
</head>
<body>
<div class="intro">
<div class="intro-text">
<h3 class="hide">
<span class="text">Loading...</span>
</h3>
</div>
</div>
<div class="slider_home"></div>
<section class="landing">
<img src="assets/images/cool-background.png" alt="" class="home__img">
<div class="home__container">
<div class="home__data">
<span class="home__data-subtitle">Without #FodaAdu, I'm
</span>
<h1 class="home__data-title"><b>FISAYO FOSUDO</b></h1>
<span class="home__data-subtitle">Visual Storyteller & Tech Video Producer
</span>
<a href="https://youtube.com/fisayofosudo" class="button">Visit Channel</a>
</div>
<div class="home__social">
<a href="https://www.facebook.com/" target="_blank" class="home__social-link">
<i class="ri-facebook-box-fill"></i>
</a>
<a href="https://www.instagram.com/" target="_blank" class="home__social-link">
<i class="ri-instagram-fill"></i>
</a>
<a href="https://twitter.com/" target="_blank" class="home__social-link">
<i class="ri-twitter-fill"></i>
</a>
</div>
<div class="home__info">
<a href="/playlist/" class="home__info__absolute-button"></a>
<div>
<span class="home__info-title">Continue to portfolio</span>
<a href="/playlist/" class="button button--flex button--link home__info-button">
here <i class="ri-arrow-right-line"></i>
</a>
</div>
<div class="home__info-overlay">
<img src="assets/images/cursor.jpg" alt="" class="home__info-img">
</div>
</div>
</div>
</section>
<!-- script -->
<script>
///// Preloader
const tl = gsap.timeline({
defaults: { ease: "power1.out" }
});
tl.to('.text', { y: "0%", duration: 1.5, stagger: 0.25 });
tl.to(".slider_home", { y: "-100%", duration: 1.5, delay: 0.5 });
tl.to(".intro", { y: "-100%", duration: 1 }, "-=1");
</script>
</body>
</html>