-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathindex2.html
executable file
·59 lines (56 loc) · 3.11 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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Wave Motion Effect | Demo 2 | Codrops</title>
<meta name="description" content="Wave motion effects on images with Three.js using simplex noise." />
<meta name="keywords" content="three.js, wave, motion, distortion, simplex noise, slideshow, javascript" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="https://use.typekit.net/xjr3lgi.css" />
<script>
document.documentElement.className = "js";
var supportsCssVars = function() { var e, t = document.createElement("style"); return t.innerHTML = "root: { --tmp-var: bold; }", document.head.appendChild(t), e = !!(window.CSS && window.CSS.supports && window.CSS.supports("font-weight", "var(--tmp-var)")), t.parentNode.removeChild(t), e };
supportsCssVars() || alert("Please view this demo in a modern browser that supports CSS Variables.");
</script>
</head>
<body class="demo-2 loading">
<main>
<div class="frame">
<div class="frame__title-wrap">
<h1 class="frame__title">Wave Motion Effect</h1>
<div class="frame__links">
<a href="https://tympanus.net/Development/BackgroundScaleHoverEffect/">Previous demo</a>
<a href="https://tympanus.net/codrops/?p=48418">Article</a>
<a href="https://github.com/marioecg/codrops-wave-motion">GitHub</a>
</div>
</div>
<div class="frame__demos">
<a href="index.html" class="frame__demo">demo 1</a>
<a href="index2.html" class="frame__demo frame__demo--current">demo 2</a>
</div>
</div>
<div class="slideshow">
<div class="slideshow__img-wrap | js-slideshow">
<div class="aspect" style="--aspect: 133.33%"></div>
<img class="slideshow__img slideshow__img--current" src="img/slideshow-01.jpg" alt="Some image" />
<img class="slideshow__img" src="img/slideshow-02.jpg" alt="Some image" />
<img class="slideshow__img" src="img/slideshow-03.jpg" alt="Some image" />
<img class="slideshow__img" src="img/slideshow-04.jpg" alt="Some image" />
</div>
<div class="slideshow__intro">
<span class="slideshow__intro-subline">A new cyber movement</span>
<h2 class="slideshow__intro-title">Mechanism</h2>
<p class="slideshow__intro-description">“Your assumptions are your windows on the world. Scrub them off every once in a while, or the light won't come in.”</p>
</div>
<nav class="slideshow__nav">
<a class="slideshow__nav-item slideshow__nav-item--current">Seoul</a>
<a class="slideshow__nav-item">Bangkok</a>
<a class="slideshow__nav-item">Taipei</a>
<a class="slideshow__nav-item">Tokyo</a>
</nav>
</div>
</main>
</body>
</html>