-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·85 lines (82 loc) · 4.31 KB
/
Copy pathindex.html
File metadata and controls
executable file
·85 lines (82 loc) · 4.31 KB
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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Rotating On-Scroll Animations | Demo 1 | Codrops</title>
<link rel="icon" type="image/svg+xml" href="https://tympanus.net/favicon/favicon.svg" />
<link rel="shortcut icon" href="https://tympanus.net/favicon/favicon.ico" />
<link rel="stylesheet" href="https://use.typekit.net/vie7rso.css" />
<link rel="stylesheet" type="text/css" href="css/base.css" />
<script>
document.documentElement.className = 'js';
</script>
</head>
<body class="demo-1 loading">
<main>
<header class="frame">
<h1 class="frame__title">
Rotating On-Scroll Animations inspired by
<a href="https://www.instagram.com/p/DT-snsfDakn/?img_index=1" target="_blank">Jason Booth</a>
</h1>
<nav class="frame__links">
<a href="https://tympanus.net/codrops/?p=116660">Article</a>
<a href="https://tympanus.net/codrops/hub/">All demos</a>
<a href="https://github.com/codrops/RotatingOnScrollAnimations">GitHub</a>
</nav>
<nav class="frame__tags">
<a href="https://tympanus.net/codrops/hub/tag/scroll/">#scroll</a>
<a href="https://tympanus.net/codrops/hub/tag/gsap/">#gsap</a>
</nav>
<nav class="frame__demos">
<span>Variation 1</span>
<a href="index2.html">Variation 2</a>
<a href="index3.html">Variation 3</a>
<a href="index4.html">Variation 4</a>
<a href="index5.html">Variation 5</a>
</nav>
</header>
<div class="gallery">
<div class="gallery__item" style="background-image: url('assets/landscape/19.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/02.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/17.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/07.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/11.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/03.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/18.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/01.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/20.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/09.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/16.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/05.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/12.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/08.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/15.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/06.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/13.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/10.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/04.webp')"></div>
<div class="gallery__item" style="background-image: url('assets/landscape/14.webp')"></div>
</div>
<div class="mark font-1">
<div class="mark__inner">
<span>Haruto Saito</span> <span>/</span>
<span>Yuna Mori</span> <span>/</span>
<span>Itsuki Hayashi</span> <span>/</span>
<span>Akari Shimizu</span> <span>/</span>
<span>Sota Okada</span> <span>/</span>
<span>Misaki Takeda</span> <span>/</span>
<span>Riku Arai</span> <span>/</span>
<span>Nanami Hoshino</span> <span>/</span>
<span>Daichi Sugimoto</span> <span>/</span>
<span>Koharu Nishimura</span>
</div>
</div>
</main>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/lenis.min.js"></script>
<script src="js/gsap.min.js"></script>
<script src="js/ScrollTrigger.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>