-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
132 lines (132 loc) · 5.12 KB
/
demo.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<title>Fluento</title>
<h1 class="logo" onclick="window.location.href = 'index.html'">fluento</h1>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link rel="icon" href="icon.svg">
<ul class="navbar glow sticky push">
<li><a href="index.html">Home</a></li>
<li><a href="api.html">API Documentation</a></li>
<li><a href="design.html">design</a></li>
<li><a id="active">Demos</a></li>
<li><a href="credits.html">credits</a></li>
<li><a href="addons.html">addons</a></li>
<li><a href="https://github.com/shaurya1709/fluento">github</a></li>
</ul>
<h1 class="head">demos</h1>
<h1>classes</h1>
<h2 id="navbar-demo">navbar</h2>
<ul class="navbar">
<li><a>Page 1</a></li>
<li><a id="active">Page 2</a></li>
</ul>
<p>source code:</p>
<pre class="code">
<ul class="navbar">
<li><a>Page 1</a></li>
<li><a id="active">Page 2</a></li>
</ul>
</pre>
<h1>class pairs</h1>
<h2>glow</h2>
<h3>button</h3>
<button class="glow">button</button>
<p>source code:</p>
<pre class="code">
<button class="glow">button</button>
</pre>
<h3>navbar</h3>
<ul class="navbar glow">
<li><a>Page 1</a></li>
<li><a id="active">Page 2</a></li>
</ul>
<p>source code:</p>
<pre class="code">
<ul class="navbar glow">
<li><a>Page 1</a></li>
<li><a id="active">Page 2</a></li>
</ul>
</pre>
<h2>push</h2>
<h3>button</h3>
<button class="push">button</button>
<p>source code:</p>
<pre class="code">
<button class="push">button</button>
</pre>
<h3>navbar</h3>
<ul class="navbar push">
<li><a>Page 1</a></li>
<li><a id="active">Page 2</a></li>
</ul>
<p>source code:</p>
<pre class="code">
<ul class="navbar push">
<li><a>Page 1</a></li>
<li><a id="active">Page 2</a></li>
</ul>
</pre>
<h2 id="ccp">combining class pairs</h2>
<p>a navbar with classes glow and push</p>
<ul class="navbar glow push">
<li><a>Page 1</a></li>
<li><a id="active">Page 2</a></li>
</ul>
<p>source code:</p>
<pre class="code">
<ul class="navbar glow push">
<li><a>Page 1</a></li>
<li><a id="active">Page 2</a></li>
</ul>
</pre>
<h1>animations</h1>
<h2>bounce</h2>
<div style="height: 100px; width: 100px; animation: bounce 2s infinite; background: red; margin: 100px"></div>
<p>source code</p>
<pre class="code"><div style="height: 100px; width: 100px; animation: bounce 2s infinite; background: red"></div></pre>
<h2>flip</h2>
<button style="animation: flip 1s infinite">i flip!</button>
<p>Source Code</p>
<pre class="code">
<button style="animation: flip 1s infinite">i spin!</button>
</pre>
<h2>fadeback</h2>
<p style="animation: fadeback 1s infinite">i fade in and out</p>
<p>Source Code</p>
<pre class="code">
<p style="animation: fadeback 1s infinite">i fade in and out</button>
</pre>
<h2>spin</h2>
<button style="animation: spin 1s infinite">i spin!</button>
<p>source code</p>
<pre class="code"><button style="animation: spin 1s infinite">I Spin!</button></pre>
<h2>slide-in animations</h2>
<h3>down</h3>
<button style="animation: slidedown 1.5s infinite">i slide!</button>
<p>source code</p>
<pre class="code"><button style="animation: slidedown 1.5s infinite">i slide!</button></pre>
<h3>up</h3>
<button style="animation: slideup 1.5s infinite">i slide!</button>
<p>source code</p>
<pre class="code"><button style="animation: slideup 1.5s infinite">i slide!</button></pre>
<h3>left</h3>
<button style="animation: slideleft 1.5s infinite">i slide!</button>
<p>source code</p>
<pre class="code"><button style="animation: slideleft 1.5s infinite">i slide!</button></pre>
<h3>right</h3>
<button style="animation: slideright 1.5s infinite">i slide!</button>
<p>source code</p>
<pre class="code"><button style="animation: slideright 1.5s infinite">i slide!</button></pre>
<h1>icon buttons</h1>
<button class="icon-button" style="text-transform: none;"><svg xmlns="http://www.w3.org/2000/svg" viewBox="-5 -5 24 24" width="24" height="24" preserveAspectRatio="xMinYMin" class="icon__icon"><path d="m8 6.641 1.121-1.12a1 1 0 0 1 1.415 1.413L7.707 9.763a.997.997 0 0 1-1.414 0L3.464 6.934A1 1 0 1 1 4.88 5.52L6 6.641V1a1 1 0 1 1 2 0v5.641zM1 12h12a1 1 0 0 1 0 2H1a1 1 0 0 1 0-2z"/></svg>Download File "Never Gonna Give You Up.docx"</button>
<pre class="code"><button class="icon-button" style="text-transform: none;"><svg xmlns="http://www.w3.org/2000/svg" viewBox="-5 -5 24 24" width="24" height="24" preserveAspectRatio="xMinYMin" class="icon__icon"><path d="m8 6.641 1.121-1.12a1 1 0 0 1 1.415 1.413L7.707 9.763a.997.997 0 0 1-1.414 0L3.464 6.934A1 1 0 1 1 4.88 5.52L6 6.641V1a1 1 0 1 1 2 0v5.641zM1 12h12a1 1 0 0 1 0 2H1a1 1 0 0 1 0-2z"/></svg>Download File "Never Gonna Give You Up.docx"</button></pre>
<h1 id="emoji">emoji</h1>
<h2>Noto Color Emoji</h2>
<p>that joke was so funny 😂</p>
<p>noto color emoji supports all the latest emojis from android 12.</p>
<h2>browser</h2>
<p style="font-family: sans-serif">that joke was so funny 😂</p>
<p contenteditable="true">Type some emojis here and try noto out</p>
<style>
@import url(style.css);
</style>