-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex2.html
81 lines (67 loc) · 3.72 KB
/
index2.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
<!DOCTYPE html>
<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>Page-2 transition with barba.js</title>
<link rel="icon" href="img/icon.jpg" type="icon/x-icon">
<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=Eater&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fancyapps/ui/dist/fancybox.css" />
<link rel="stylesheet" href="style/normalize.css">
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<!-- div .wrapp -->
<div class="wrapp" data-barba="wrapper">
<div class="preloader">
<span class="preloader__bg"></span>
<div class="preloader__wrapp">
<img class="preloader__img" src="img/ghost-w.png" alt="">
<img class="preloader__img" src="img/pumpkin.png" alt="">
<img class="preloader__img" src="img/ghost-w.png" alt="">
<span class="preloader__txt">Happy Halloween</span>
</div>
</div>
<main class="main" data-barba="container" data-barba-namespace="second">
<section class="section second_page">
<span class="section__bg section__bg-2"></span>
<img class="section__bg-el bg_img1" src="img/web1.png" alt="">
<img class="section__bg-el bg_img2" src="img/spider-web.png" alt="">
<img class="section__bg-el bg_img3" src="img/web1.png" alt="">
<img class="section__bg-el bg_img4" src="img/web2.png" alt="">
<div class="section__bl">
<div class="content">
<div class="section__wrapp">
<div class="section__text">
<h1 class="title">
<span>Halloween</span>
<img class="title__img" src="img/witch.png" alt="witch">
</h1>
<p class="descript">Lorem ipsum dolor sit amet consectetur adipisicing elit. Deleniti et
earum culpa! Minus consectetur esse harum. Hic, explicabo maxime veniam vitae porro
nostrum eius, fugiat quos earum qui amet laborum.</p>
<a href="index.html" class="btn-link link_s">Next page <img src="img/ghost-b.png"
alt="ghost black"><img src="img/ghost-w.png" alt="ghost white"></a>
</div>
<div class="section__img">
<img src="img/img3.jpg" alt="" data-fancybox="gallery" data-src="img/img3.jpg">
<img src="img/img4.jpg" alt="" data-fancybox="gallery" data-src="img/img4.jpg">
</div>
</div>
</div>
</div>
</section>
</main>
</div>
<!-- /div .wrapp END -->
<script src="https://cdn.jsdelivr.net/npm/@barba/core"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@fancyapps/ui@4.0/dist/fancybox.umd.js"></script>
<script src="js/js.js"></script>
</body>
</html>