-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex2.html
More file actions
executable file
·71 lines (62 loc) · 3.08 KB
/
index2.html
File metadata and controls
executable file
·71 lines (62 loc) · 3.08 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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Layers Animation with Clip-path | Demo 2 | Codrops</title>
<meta name="description" content="Rapid image layers animation for page transitions using clip-path" />
<meta name="keywords" content="clip-path, css, gsap, javascript, animation, page transition" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="https://use.typekit.net/fjw0mxg.css">
<link rel="stylesheet" type="text/css" href="css/base.css" />
<script>document.documentElement.className="js";</script>
<script src="//tympanus.net/codrops/adpacks/analytics.js"></script>
</head>
<body class="demo-2 loading">
<main>
<div class="frame">
<h1 class="frame__title">Layers Animation with Clip-path</h1>
<a class="frame__back" href="https://tympanus.net/codrops/?p=74227">Back to the article</a>
<a class="frame__prev" href="http://tympanus.net/Development/MotionTrailAnimations/">Previous demo</a>
<nav class="frame__demos">
<span>Variations: </span>
<a href="index.html" class="frame__demo">1</a>
<a href="index2.html" class="frame__demo frame__demo--current">2</a>
<a href="index3.html" class="frame__demo">3</a>
<a href="index4.html" class="frame__demo">4</a>
<a href="index5.html" class="frame__demo">5</a>
<a href="index6.html" class="frame__demo">6</a>
</nav>
</div>
<div class="content">
<div class="content__inner">
<h2>be@con</h2>
<p>Masses walkin' blind, in a world of haze,<br>
But there's a call beyond, a beacon that blazes.<br>
It's the voice of freedom, the heart of the wild,<br>
Urging us to see, through the eyes of a child.</p>
</div>
<div class="content__inner hidden">
<h2>rh¥thm</h2>
<p>Stereo-types, they feed to our soul,<br>
Trying to fit us all, in the same little mold.<br>
But beneath the noise, the heartbeat is clear,<br>
A rhythm of resistance, a song we hold dear.</p>
</div>
<div class="layers">
<div class="layers__item"><div class="layers__item-img" style="background-image:url(img/3.jpg)"></div></div>
<div class="layers__item"><div class="layers__item-img" style="background-image:url(img/1.jpg)"></div></div>
<div class="layers__item"><div class="layers__item-img" style="background-image:url(img/2.jpg)"></div></div>
<div class="layers__item"><div class="layers__item-img" style="background-image:url(img/5.jpg)"></div></div>
<div class="layers__item"><div class="layers__item-img" style="background-image:url(img/6.jpg)"></div></div>
<div class="layers__item"><div class="layers__item-img" style="background-image:url(img/9.jpg)"></div></div>
</div>
</div>
</main>
<script src="https://tympanus.net/codrops/adpacks/cda_sponsor.js"></script>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/gsap.min.js"></script>
<script type="module" src="js/demo2/index.js"></script>
</body>
</html>