move.gl 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +38 -0
- package/css/move.gl.css +2 -0
- package/css/move.gl.min.css +2 -0
- package/package.json +55 -0
- package/scss/classes/_animations.scss +576 -0
- package/scss/classes/_index.scss +0 -0
- package/scss/classes/_transforms.scss +124 -0
- package/scss/classes/keyboard.scss +18 -0
- package/scss/classes/screensaver.scss +15 -0
- package/scss/dev/_banner.scss +36 -0
- package/scss/dev/_debug.scss +18 -0
- package/scss/dev/_deprecation.scss +10 -0
- package/scss/dev/_index.scss +8 -0
- package/scss/dev/_modules.scss +24 -0
- package/scss/effects/_filter.scss +176 -0
- package/scss/effects/_index.scss +23 -0
- package/scss/effects/_opacity.scss +62 -0
- package/scss/effects/_shadow.scss +175 -0
- package/scss/functions/_index.scss +0 -0
- package/scss/functions/scenes/_bubble.scss +19 -0
- package/scss/functions/scenes/_index.scss +20 -0
- package/scss/index.scss +0 -0
- package/scss/keyframes/_beat.scss +26 -0
- package/scss/keyframes/_index.scss +0 -0
- package/scss/maps/_index.scss +0 -0
- package/scss/maps/_mouse.scss +96 -0
- package/scss/mixins/_accessibility.scss +70 -0
- package/scss/mixins/_boot.scss +51 -0
- package/scss/mixins/_hover.scss +51 -0
- package/scss/mixins/_index.scss +0 -0
- package/scss/mixins/_selection.scss +321 -0
- package/scss/mixins/_shape.scss +44 -0
- package/scss/mixins/_touch.scss +95 -0
- package/scss/mixins/animations/--hover.scss +107 -0
- package/scss/mixins/animations/_base.scss +337 -0
- package/scss/mixins/animations/_beat.scss +119 -0
- package/scss/mixins/animations/_blink.scss +151 -0
- package/scss/mixins/animations/_bounce.scss +192 -0
- package/scss/mixins/animations/_elastic.scss +65 -0
- package/scss/mixins/animations/_fade.scss +154 -0
- package/scss/mixins/animations/_flash.scss +177 -0
- package/scss/mixins/animations/_flip.scss +72 -0
- package/scss/mixins/animations/_float.scss +126 -0
- package/scss/mixins/animations/_glow.scss +179 -0
- package/scss/mixins/animations/_heartbeat.scss +175 -0
- package/scss/mixins/animations/_hinge.scss +119 -0
- package/scss/mixins/animations/_index.scss +37 -0
- package/scss/mixins/animations/_jello.scss +129 -0
- package/scss/mixins/animations/_jiggle.scss +163 -0
- package/scss/mixins/animations/_lightspeed.scss +130 -0
- package/scss/mixins/animations/_nod.scss +161 -0
- package/scss/mixins/animations/_pop.scss +150 -0
- package/scss/mixins/animations/_pulse.scss +213 -0
- package/scss/mixins/animations/_ripple.scss +169 -0
- package/scss/mixins/animations/_roll.scss +261 -0
- package/scss/mixins/animations/_rotate.scss +428 -0
- package/scss/mixins/animations/_rubber.scss +116 -0
- package/scss/mixins/animations/_scale.scss +113 -0
- package/scss/mixins/animations/_shake.scss +182 -0
- package/scss/mixins/animations/_slide.scss +294 -0
- package/scss/mixins/animations/_spin.scss +219 -0
- package/scss/mixins/animations/_sway.scss +167 -0
- package/scss/mixins/animations/_swing.scss +247 -0
- package/scss/mixins/animations/_tada.scss +233 -0
- package/scss/mixins/animations/_twist.scss +177 -0
- package/scss/mixins/animations/_wave.scss +166 -0
- package/scss/mixins/animations/_wobble.scss +254 -0
- package/scss/mixins/animations/_zoom.scss +166 -0
- package/scss/mixins/effects/_filter.scss +148 -0
- package/scss/mixins/effects/_index.scss +0 -0
- package/scss/mixins/effects/_shadow.scss +21 -0
- package/scss/mixins/loaders/_index.scss +0 -0
- package/scss/mixins/loaders/_progress.scss +174 -0
- package/scss/mixins/loaders/_spinner.scss +101 -0
- package/scss/mixins/loaders/circle_01.scss +22 -0
- package/scss/mixins/loaders/circle_02.scss +19 -0
- package/scss/mixins/loaders/circle_03.scss +29 -0
- package/scss/mixins/loaders/circle_inner_01.scss +33 -0
- package/scss/mixins/loaders/circle_inner_02.scss +33 -0
- package/scss/mixins/loaders/circle_inner_03.scss +34 -0
- package/scss/mixins/mouse/_cursor.scss +182 -0
- package/scss/mixins/mouse/_index.scss +0 -0
- package/scss/mixins/mouse/_pointer.scss +258 -0
- package/scss/mixins/scroll/_index.scss +0 -0
- package/scss/mixins/scroll/_scroll.scss +104 -0
- package/scss/mixins/scroll/_scrollbar.scss +249 -0
- package/scss/mixins/transforms/_flip.scss +76 -0
- package/scss/mixins/transforms/_index.scss +23 -0
- package/scss/mixins/transforms/_matrix.scss +1 -0
- package/scss/mixins/transforms/_perspective.scss +11 -0
- package/scss/mixins/transforms/_rotate.scss +101 -0
- package/scss/mixins/transforms/_scale.scss +11 -0
- package/scss/mixins/transforms/_skew.scss +13 -0
- package/scss/mixins/transforms/_translate.scss +13 -0
- package/scss/mixins/transitions/_index.scss +0 -0
- package/scss/mixins/transitions/_transition.scss +13 -0
- package/scss/variables/_animation.scss +91 -0
- package/scss/variables/_index.scss +0 -0
- package/ts/ARContent.ts +27 -0
- package/ts/ARInteraction.ts +34 -0
- package/ts/AdaptiveUI.ts +25 -0
- package/ts/ContentStreaming.ts +20 -0
- package/ts/Draggable.ts +71 -0
- package/ts/DynamicEnvironment.ts +60 -0
- package/ts/Gesture.ts +168 -0
- package/ts/ImmersiveAudio.ts +40 -0
- package/ts/InteractiveCanvas.ts +177 -0
- package/ts/InteractiveVideo.ts +29 -0
- package/ts/Keyboard.ts +162 -0
- package/ts/RealTimeCollaboration.ts +25 -0
- package/ts/Screensaver.ts +140 -0
- package/ts/SpatialNavigation.ts +38 -0
- package/ts/UserProfile.ts +27 -0
- package/ts/VRExperience.ts +58 -0
- package/ts/VideoOverlay.ts +116 -0
- package/ts/index.ts +0 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Scape Agency
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/stylescape/brand/master/src/logo/logo-transparant.png" width="20%" height="20%" alt="Stylescape Logo">
|
|
3
|
+
</p>
|
|
4
|
+
<h1 align="center" style='border-bottom: none;'>move.gl</h1>
|
|
5
|
+
<h3 align="center">User eXperience Toolkit</h3>
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
<br/>
|
|
9
|
+
|
|
10
|
+
<div align="center">
|
|
11
|
+
|
|
12
|
+
[
|
|
13
|
+
](https://www.move.gl)
|
|
14
|
+
[](https://www.npmjs.com/package/move.gl)
|
|
15
|
+
[](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/stylescape/move.gl)
|
|
16
|
+
[](https://stackblitz.com/github/stylescape/move.gl/tree/main?file=src%2Findex.html)
|
|
17
|
+
[](https://github.com/stylescape/move.gl/blob/main/LICENSE)
|
|
18
|
+
|
|
19
|
+
</div>
|
|
20
|
+
|
|
21
|
+
<div align="center">
|
|
22
|
+
|
|
23
|
+
[](https://github.com/stylescape/move.gl/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&projects=&template=bug_report.yml)
|
|
24
|
+
[](https://github.com/stylescape/move.gl/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&projects=&template=feature_request.yml)
|
|
25
|
+
[](https://github.com/stylescape/move.gl/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&projects=&template=question.yml)
|
|
26
|
+
[](https://github.com/stylescape/move.gl/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&projects=&template=suggestion.yml)
|
|
27
|
+
[](https://github.com/stylescape/move.gl/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&projects=&template=discussion.yml)
|
|
28
|
+
|
|
29
|
+
</div>
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
<br/>
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
- [Foundation | Motion UI](https://github.com/foundation/motion-ui)
|
|
38
|
+
- [Glide](https://github.com/nickpettit/glide)
|
package/css/move.gl.css
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "move.gl",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "move.gl is a ...",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"move.gl",
|
|
7
|
+
"stylescape"
|
|
8
|
+
],
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"homepage": "https://www.move.gl/",
|
|
11
|
+
"funding": [
|
|
12
|
+
{
|
|
13
|
+
"type": "github",
|
|
14
|
+
"url": "https://github.com/sponsors/scape-foundation"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"main": "js/index.js",
|
|
18
|
+
"types": "js/index.d.ts",
|
|
19
|
+
"files": [
|
|
20
|
+
"code-snippets/**/*.code-snippets",
|
|
21
|
+
"css/**/*.{css,map}",
|
|
22
|
+
"font/**/*.{eot,otf,ttf,woff,woff2}",
|
|
23
|
+
"inkscape/**/*.inkscape",
|
|
24
|
+
"jinja/**/*.jinja",
|
|
25
|
+
"js/**/*.d.ts",
|
|
26
|
+
"js/**/*.{js,map}",
|
|
27
|
+
"less/**/*.less",
|
|
28
|
+
"md/**/*.md",
|
|
29
|
+
"oco/**/*.oco",
|
|
30
|
+
"png/**/*.png",
|
|
31
|
+
"py/**/*.py",
|
|
32
|
+
"rcpx/**/*.rcpx",
|
|
33
|
+
"scss/**/*.scss",
|
|
34
|
+
"sketchpalette/**/*.sketchpalette",
|
|
35
|
+
"styl/**/*.styl",
|
|
36
|
+
"svg/**/*.svg",
|
|
37
|
+
"tex/**/*.tex",
|
|
38
|
+
"ts/**/*.ts",
|
|
39
|
+
"!.DS_Store"
|
|
40
|
+
],
|
|
41
|
+
"author": "Lars van Vianen",
|
|
42
|
+
"contributors": [
|
|
43
|
+
"Scape Agency"
|
|
44
|
+
],
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git+https://github.com/stylescape/move.gl.git"
|
|
48
|
+
},
|
|
49
|
+
"exports": {
|
|
50
|
+
".": {
|
|
51
|
+
"sass": "./scss/index.scss",
|
|
52
|
+
"typescript": "./ts/index.scss"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,576 @@
|
|
|
1
|
+
// ============================================================================
|
|
2
|
+
// StyleScape | Animations
|
|
3
|
+
// ============================================================================
|
|
4
|
+
|
|
5
|
+
@use "../dev" as *;
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
// Beat Animations
|
|
11
|
+
// ----------------------------------------------------------------------------
|
|
12
|
+
|
|
13
|
+
.animate_beat {
|
|
14
|
+
@include animate_beat();
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.animate_beat_fade {
|
|
18
|
+
@include animate_beat_fade();
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.animate_beat_double {
|
|
22
|
+
@include animate_beat_double();
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
// Blink Animations
|
|
27
|
+
// ----------------------------------------------------------------------------
|
|
28
|
+
|
|
29
|
+
.animate_blink {
|
|
30
|
+
@include animate_blink();
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.animate_blink_rapid {
|
|
34
|
+
@include animate_blink_rapid();
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.animate_blink_soft {
|
|
38
|
+
@include animate_blink_soft();
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.animate_blink_alternate {
|
|
42
|
+
@include animate_blink_alternate();
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
// Bounce Animations
|
|
47
|
+
// ----------------------------------------------------------------------------
|
|
48
|
+
|
|
49
|
+
.animate_bounce {
|
|
50
|
+
@include animate_bounce();
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.animate_bounce_extended {
|
|
54
|
+
@include animate_bounce_extended();
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.animate_bounce_rotate {
|
|
58
|
+
@include animate_bounce_rotate();
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.animate_bounce_multi {
|
|
62
|
+
@include animate_bounce_multi();
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
// Elastic Animations
|
|
67
|
+
// ----------------------------------------------------------------------------
|
|
68
|
+
|
|
69
|
+
.animate_elastic {
|
|
70
|
+
@include animate_elastic();
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
// Fade Animations
|
|
75
|
+
// ----------------------------------------------------------------------------
|
|
76
|
+
|
|
77
|
+
.animate_fade {
|
|
78
|
+
@include animate_fade();
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.animate_fade_in {
|
|
82
|
+
@include animate_fade_in();
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.animate_fade_out {
|
|
86
|
+
@include animate_fade_out();
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.animate_fade_gradual {
|
|
90
|
+
@include animate_fade_gradual();
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
// Flash Animations
|
|
95
|
+
// ----------------------------------------------------------------------------
|
|
96
|
+
|
|
97
|
+
.animate_flash {
|
|
98
|
+
@include animate_flash();
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.animate_flash_fade {
|
|
102
|
+
@include animate_flash_fade();
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.animate_flash_strobe {
|
|
106
|
+
@include animate_flash_strobe();
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.animate_flash_fade_slow {
|
|
110
|
+
@include animate_flash_fade_slow();
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
// Flip Animations
|
|
115
|
+
// ----------------------------------------------------------------------------
|
|
116
|
+
|
|
117
|
+
.animate_flip {
|
|
118
|
+
@include animate_flip();
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
// Flip Horizontal Animation
|
|
122
|
+
// ----------------------------------------------------------------------------
|
|
123
|
+
|
|
124
|
+
///
|
|
125
|
+
/// Horizontal Flip Animation
|
|
126
|
+
/// Creates a flip animation that rotates the element horizontally.
|
|
127
|
+
///
|
|
128
|
+
.animate_flip_horizontal {
|
|
129
|
+
@include animate_flip(1s, ease-in-out, infinite, 0, 1, 0, 0, 360deg);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
// Flip Vertical Animation
|
|
134
|
+
// ----------------------------------------------------------------------------
|
|
135
|
+
|
|
136
|
+
///
|
|
137
|
+
/// Vertical Flip Animation
|
|
138
|
+
/// Creates a flip animation that rotates the element vertically.
|
|
139
|
+
///
|
|
140
|
+
.animate_flip_vertical {
|
|
141
|
+
@include animate_flip(1s, ease-in-out, infinite, 1, 0, 0, 0, 360deg);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
// Flip Diagonal Animation
|
|
146
|
+
// ----------------------------------------------------------------------------
|
|
147
|
+
|
|
148
|
+
///
|
|
149
|
+
/// Diagonal Flip Animation
|
|
150
|
+
/// Creates a flip animation that rotates the element diagonally.
|
|
151
|
+
///
|
|
152
|
+
.animate_flip_diagonal {
|
|
153
|
+
@include animate_flip(1s, ease-in-out, infinite, 1, 1, 0, 0, 360deg);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
// 180-degree Flip Animation Variants
|
|
158
|
+
// ----------------------------------------------------------------------------
|
|
159
|
+
|
|
160
|
+
///
|
|
161
|
+
/// 180-Degree Horizontal Flip Animation
|
|
162
|
+
/// Creates a flip animation that rotates the element horizontally by 180 degrees.
|
|
163
|
+
///
|
|
164
|
+
.animate_flip_180_horizontal {
|
|
165
|
+
@include animate_flip(1s, ease-in-out, infinite, 0, 1, 0, 0, -180deg);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
///
|
|
169
|
+
/// 180-Degree Vertical Flip Animation
|
|
170
|
+
/// Creates a flip animation that rotates the element vertically by 180 degrees.
|
|
171
|
+
///
|
|
172
|
+
.animate_flip_180_vertical {
|
|
173
|
+
@include animate_flip(1s, ease-in-out, infinite, 1, 0, 0, 0, -180deg);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
///
|
|
177
|
+
/// 180-Degree Diagonal Flip Animation
|
|
178
|
+
/// Creates a flip animation that rotates the element diagonally by 180 degrees.
|
|
179
|
+
///
|
|
180
|
+
.animate_flip_180_diagonal {
|
|
181
|
+
@include animate_flip(1s, ease-in-out, infinite, 1, 1, 0, 0, -180deg);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
// Float Animations
|
|
188
|
+
// ----------------------------------------------------------------------------
|
|
189
|
+
|
|
190
|
+
.animate_float {
|
|
191
|
+
@include animate_float();
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.animate_float_horizontal {
|
|
195
|
+
@include animate_float_horizontal();
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.animate_float_rotate {
|
|
199
|
+
@include animate_float_rotate();
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
// Glow Animations
|
|
204
|
+
// ----------------------------------------------------------------------------
|
|
205
|
+
|
|
206
|
+
.animate_glow {
|
|
207
|
+
@include animate_glow($animate_base_color_glow_01);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.animate_glow_pulse {
|
|
211
|
+
@include animate_glow_pulse($animate_base_color_glow_01);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.animate_glow_multicolor {
|
|
215
|
+
@include animate_glow_multicolor();
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
// Heartbeat Animation
|
|
221
|
+
// ----------------------------------------------------------------------------
|
|
222
|
+
|
|
223
|
+
.animate_heartbeat {
|
|
224
|
+
@include animate_heartbeat();
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.animate_heartbeat_fast {
|
|
228
|
+
@include animate_heartbeat_fast();
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.animate_heartbeat_slow {
|
|
232
|
+
@include animate_heartbeat_slow();
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.animate_heartbeat_color {
|
|
236
|
+
@include animate_heartbeat_color();
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
// Jiggle Animations
|
|
241
|
+
// ----------------------------------------------------------------------------
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
.animate_jiggle {
|
|
245
|
+
@include animate_jiggle();
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.animate_jiggle_vertical {
|
|
249
|
+
@include animate_jiggle_vertical();
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.animate_jiggle_multi {
|
|
253
|
+
@include animate_jiggle_multi();
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.animate_jiggle_slow {
|
|
257
|
+
@include animate_jiggle_slow();
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
// Nod Animations
|
|
262
|
+
// ----------------------------------------------------------------------------
|
|
263
|
+
|
|
264
|
+
.animate_nod {
|
|
265
|
+
@include animate_nod();
|
|
266
|
+
}
|
|
267
|
+
.animate_nod_slow {
|
|
268
|
+
@include animate_nod_slow();
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.animate_nod_bounce {
|
|
272
|
+
@include animate_nod_bounce();
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.animate_nod_continuous {
|
|
276
|
+
@include animate_nod_continuous();
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
// Pop Animations
|
|
281
|
+
// ----------------------------------------------------------------------------
|
|
282
|
+
|
|
283
|
+
.animate_pop {
|
|
284
|
+
@include animate_pop(1.2);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.animate_pop_fast {
|
|
288
|
+
@include animate_pop_fast(1.2);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.animate_pop_slow {
|
|
292
|
+
@include animate_pop_slow(1.1);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.animate_pop_rotate {
|
|
296
|
+
@include animate_pop_rotate(1.2, 10deg);
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
// Pulse Animations
|
|
302
|
+
// ----------------------------------------------------------------------------
|
|
303
|
+
|
|
304
|
+
.animate_pulse {
|
|
305
|
+
@include animate_pulse();
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.animate_pulse_slow {
|
|
309
|
+
@include animate_pulse_slow();
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.animate_pulse_fast {
|
|
313
|
+
@include animate_pulse_fast();
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.animate_pulse_color {
|
|
317
|
+
@include animate_pulse_color();
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
// Ripple Animations
|
|
323
|
+
// ----------------------------------------------------------------------------
|
|
324
|
+
|
|
325
|
+
.animate_ripple {
|
|
326
|
+
@include animate_ripple();
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.animate_ripple_slow {
|
|
330
|
+
@include animate_ripple_slow();
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.animate_ripple_multi {
|
|
334
|
+
@include animate_ripple_multi();
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.animate_ripple_color {
|
|
338
|
+
@include animate_ripple_color();
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
// Roll Animations
|
|
343
|
+
// ----------------------------------------------------------------------------
|
|
344
|
+
|
|
345
|
+
.animate_roll {
|
|
346
|
+
@include animate_roll();
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.animate_roll_reverse {
|
|
350
|
+
@include animate_roll_reverse();
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.animate_roll_slow {
|
|
354
|
+
@include animate_roll_slow();
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.animate_roll_vertical {
|
|
358
|
+
@include animate_roll_vertical();
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
// Scale Animations
|
|
363
|
+
// ----------------------------------------------------------------------------
|
|
364
|
+
|
|
365
|
+
.animate_scale_expand {
|
|
366
|
+
@include animate_scale_expand();
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.animate_scale_shrink {
|
|
370
|
+
@include animate_scale_shrink();
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
// Shake Animations
|
|
375
|
+
// ----------------------------------------------------------------------------
|
|
376
|
+
|
|
377
|
+
.animate_shake {
|
|
378
|
+
@include animate_shake();
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.animate_shake_slow {
|
|
382
|
+
@include animate_shake_slow();
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.animate_shake_horizontal {
|
|
386
|
+
@include animate_shake_horizontal();
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
// Slide Animations
|
|
391
|
+
// ----------------------------------------------------------------------------
|
|
392
|
+
|
|
393
|
+
.animate_slide {
|
|
394
|
+
@include animate_slide(left, 100%);
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.animate_slide_up {
|
|
398
|
+
@include animate_slide_up();
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.animate_slide_down {
|
|
402
|
+
@include animate_slide_down();
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.animate_slide_in_left {
|
|
406
|
+
@include animate_slide_in_left();
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.animate_slide_in_right {
|
|
410
|
+
@include animate_slide_in_right();
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.animate_slide_out_left {
|
|
414
|
+
@include animate_slide_out_left();
|
|
415
|
+
}
|
|
416
|
+
.animate_slide_out_right {
|
|
417
|
+
@include animate_slide_out_right();
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.animate_slide_in_fade {
|
|
421
|
+
@include animate_slide_in_fade(left, 100%);
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
// Spin Animations
|
|
426
|
+
// ----------------------------------------------------------------------------
|
|
427
|
+
|
|
428
|
+
.animate_spin {
|
|
429
|
+
@include animate_spin();
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.animate_spin_reverse {
|
|
433
|
+
@include animate_spin_reverse();
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.animate_spin_grow {
|
|
437
|
+
@include animate_spin_grow();
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.animate_spin_pulse {
|
|
441
|
+
@include animate_spin_pulse();
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.animate_spin_flip {
|
|
445
|
+
@include animate_spin_flip();
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
// Sway Animations
|
|
451
|
+
// ----------------------------------------------------------------------------
|
|
452
|
+
|
|
453
|
+
.animate_sway {
|
|
454
|
+
@include animate_sway();
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.animate_sway_slow {
|
|
458
|
+
@include animate_sway_slow();
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.animate_sway_fast {
|
|
462
|
+
@include animate_sway_fast();
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.animate_sway_fade {
|
|
466
|
+
@include animate_sway_fade();
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
// Tada Animations
|
|
472
|
+
// ----------------------------------------------------------------------------
|
|
473
|
+
|
|
474
|
+
.animate_tada {
|
|
475
|
+
@include animate_tada();
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.animate_tada_slow {
|
|
479
|
+
@include animate_tada_slow();
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.animate_tada_fast {
|
|
483
|
+
@include animate_tada_fast();
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
.animate_tada_fade {
|
|
487
|
+
@include animate_tada_fade();
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
// Twist Animations
|
|
496
|
+
// ----------------------------------------------------------------------------
|
|
497
|
+
|
|
498
|
+
.animate_twist {
|
|
499
|
+
@include animate_twist();
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.animate_twist_slow {
|
|
503
|
+
@include animate_twist_slow();
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.animate_twist_fast {
|
|
507
|
+
@include animate_twist_fast();
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.animate_twist_color {
|
|
511
|
+
@include animate_twist_color();
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
// Wave Animations
|
|
517
|
+
// ----------------------------------------------------------------------------
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
.animate_wave {
|
|
521
|
+
@include animate_wave();
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.animate_wave_slow {
|
|
525
|
+
@include animate_wave_slow();
|
|
526
|
+
}
|
|
527
|
+
.animate_wave_fast {
|
|
528
|
+
@include animate_wave_fast();
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.animate_wave_fade {
|
|
532
|
+
@include animate_wave_fade();
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
// Wobble Animations
|
|
539
|
+
// ----------------------------------------------------------------------------
|
|
540
|
+
|
|
541
|
+
.animate_wobble {
|
|
542
|
+
@include animate_wobble();
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.animate_wobble_slow {
|
|
546
|
+
@include animate_wobble_slow();
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.animate_wobble_fast {
|
|
550
|
+
@include animate_wobble_fast();
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.animate_wobble_scale {
|
|
554
|
+
@include animate_wobble_scale();
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
// Zoom Animations
|
|
560
|
+
// ----------------------------------------------------------------------------
|
|
561
|
+
|
|
562
|
+
.animate_zoom {
|
|
563
|
+
@include animate_zoom(1.5);
|
|
564
|
+
}
|
|
565
|
+
.animate_zoom_slow {
|
|
566
|
+
@include animate_zoom_slow();
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.animate_zoom_fast {
|
|
570
|
+
@include animate_zoom_fast();
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.animate_zoom_fade {
|
|
574
|
+
@include animate_zoom_fade();
|
|
575
|
+
}
|
|
576
|
+
|
|
File without changes
|