-
Notifications
You must be signed in to change notification settings - Fork 135
/
index3.html
executable file
·42 lines (42 loc) · 2.14 KB
/
index3.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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ambient Canvas Backgrounds | Shift | Codrops</title>
<meta name="description" content="A set of animated ambient canvas backgrounds with different effects" />
<meta name="keywords" content="canvas, ambient, background, animation, javascript, demo, web development" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="css/base.css" />
<link rel="stylesheet" type="text/css" href="css/demo3.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-3">
<main>
<div class="frame">
<div class="frame__title-wrap">
<h1 class="frame__title">Ambient Canvas Backgrounds</h1>
</div>
<a class="frame__github" href="https://github.com/codrops/AmbientCanvasBackgrounds/">GitHub</a>
<div class="frame__links">
<a href="https://tympanus.net/Development/MotionTransitionEffect/">Previous Demo</a>
<a href="https://tympanus.net/codrops/?p=36743">Article</a>
</div>
<div class="frame__demos">
<a href="index.html" class="frame__demo">Aurora</a>
<a href="index2.html" class="frame__demo">Swirl</a>
<a href="index3.html" class="frame__demo frame__demo--current">Shift</a>
<a href="index4.html" class="frame__demo">Coalesce</a>
<a href="index5.html" class="frame__demo">Pipeline</a>
</div>
</div>
<div class="content content--canvas">
<h2 class="content__title">Shift</h2>
</div>
</main>
<script src="js/noise.min.js"></script>
<script src="js/util.js"></script>
<script src="js/shift.js"></script>
</body>
</html>