forked from Recidvst/scrambling-letters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (97 loc) · 4.69 KB
/
index.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-79424773-7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-79424773-7');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="title" content="Scrambling Letters">
<meta name="description" content=" Scrambling Letters - a lightweight javascript library for adding a scrambling/decoding effect to your text.">
<meta name="author" content="Recidvst">
<title>Scrambling Letters</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link href="./dist/css/example.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
</head>
<body class="body-background">
<main class="container">
<header class="row heading">
<div class="col-xs-12">
<h1 data-title-scrambler data-scramble-text="Scrambling Letters" class="main-title"><span>Scrambling Letters</span></h1>
<h3> A lightweight javascript library for adding a scrambling/decoding effect to your text.</h3>
</div>
<div class="col-xs-12 button-hold">
<a class="nano-button anim-sides" id="scramble-title-button" href="javascript:void(0);" title="Scramble Titles">
<svg height="100%" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="outline" height="100%" width="100%"></rect>
</svg>
<div class="text">Scramble Titles</div>
</a>
<a class="nano-button anim-sides" id="scramble-paragraph-button" href="javascript:void(0);" title="Scramble Text">
<svg height="100%" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="outline" height="100%" width="100%"></rect>
</svg>
<div class="text">Scramble Text</div>
</a>
<a class="nano-button anim-sides" id="scramble-paragraph-decode" href="javascript:void(0);" title="Decode Titles">
<svg height="100%" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="outline" height="100%" width="100%"></rect>
</svg>
<div class="text">Decode Titles</div>
</a>
</div>
</header>
<section class="row why-scrambling">
<div class="col-xs-12">
<h2 data-title-scrambler data-scramble-text="Why Scrambling Letters?">Why Scrambling Letters?</h2>
<ul>
<li>
Vanilla JS with no dependencies.
</li>
<li>
Simple but powerful configuration options.
</li>
<li>
Support for targeting multiple text sections independently.
</li>
<li>
Multiple bundle versions available - UMD, ESM, IIFE & CJS.
</li>
</ul>
</div>
</section>
<section class="row get-scrambling">
<div class="col-xs-12">
<h2 data-title-scrambler data-scramble-text="Get Scrambling Letters"><a href="https://github.com/Recidvst/scrambling-letters" rel="noopener" title="Find on Github" class="nondescript-link">Get Scrambling Letters</a></h2>
<a class="nano-button anim-sides" href="https://github.com/Recidvst/scrambling-letters" rel="noopener" title="Find on Github">
<svg height="100%" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="outline" height="100%" width="100%"></rect>
</svg>
<div class="text">Github</div>
</a>
<a class="nano-button anim-sides" href="https://www.npmjs.com/package/scrambling-letters" target="_blank" rel="noopener" title="Find on NPM">
<svg height="100%" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="outline" height="100%" width="100%"></rect>
</svg>
<div class="text">NPM</div>
</a>
</div>
</section>
<footer class="row">
<div class="col-xs-12">
<br />
<p> <a href="https://github.com/Recidvst" title="Recidvst on Github" target="_blank">Chris Snowden</a> | MIT license
</p>
</div>
</footer>
</main>
<script src="./dist/scrambler.umd.js"></script>
<script src="./dist/example.js"></script>
</body>
</html>