-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathindex.html
45 lines (36 loc) · 1.23 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Pace JS | Preloader</title>
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<script src="pace.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/src/jquery.bez.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.2/TweenMax.min.js"></script>
</head>
<body>
<h1 class="title">CODEGRID</h1>
<div id="preloader">
<div class="p">LOADING</div>
</div>
<script>
paceOptions = {
ajax: true,
document: true,
eventLag: false
};
Pace.on('done', function() {
$('.p').delay(500).animate({top: '30%', opacity: '0'}, 3000, $.bez([0.19,1,0.22,1]));
$('#preloader').delay(1500).animate({top: '-100%'}, 2000, $.bez([0.19,1,0.22,1]));
TweenMax.from(".title", 2, {
delay: 1.8,
y: 10,
opacity: 0,
ease: Expo.easeInOut
})
});
</script>
</body>
</html>