semantic-ui-rails 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +26 -0
- data/Rakefile +1 -0
- data/lib/generators/semantic/install/install_generator.rb +38 -0
- data/lib/generators/semantic/install/templates/semantic-ui.js +21 -0
- data/lib/generators/semantic/install/templates/semantic-ui/collections.less +6 -0
- data/lib/generators/semantic/install/templates/semantic-ui/elements.less +11 -0
- data/lib/generators/semantic/install/templates/semantic-ui/modules.less +18 -0
- data/lib/generators/semantic/install/templates/semantic-ui/views.less +6 -0
- data/lib/semantic/ui/rails.rb +10 -0
- data/lib/semantic/ui/rails/engine.rb +8 -0
- data/lib/semantic/ui/rails/version.rb +7 -0
- data/semantic-ui-rails.gemspec +23 -0
- data/vendor/assets/fonts/icons.eot +0 -0
- data/vendor/assets/fonts/icons.svg +450 -0
- data/vendor/assets/fonts/icons.ttf +0 -0
- data/vendor/assets/fonts/icons.woff +0 -0
- data/vendor/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
- data/vendor/assets/images/semantic-ui/loader-large.gif +0 -0
- data/vendor/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
- data/vendor/assets/images/semantic-ui/loader-medium.gif +0 -0
- data/vendor/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
- data/vendor/assets/images/semantic-ui/loader-mini.gif +0 -0
- data/vendor/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
- data/vendor/assets/images/semantic-ui/loader-small.gif +0 -0
- data/vendor/assets/javascripts/semantic-ui/accordion.js +411 -0
- data/vendor/assets/javascripts/semantic-ui/behavior/api.js +666 -0
- data/vendor/assets/javascripts/semantic-ui/behavior/colorize.js +271 -0
- data/vendor/assets/javascripts/semantic-ui/behavior/form.js +657 -0
- data/vendor/assets/javascripts/semantic-ui/behavior/state.js +752 -0
- data/vendor/assets/javascripts/semantic-ui/carousel.js +327 -0
- data/vendor/assets/javascripts/semantic-ui/chatroom.js +766 -0
- data/vendor/assets/javascripts/semantic-ui/checkbox.js +348 -0
- data/vendor/assets/javascripts/semantic-ui/dimmer.js +525 -0
- data/vendor/assets/javascripts/semantic-ui/dropdown.js +697 -0
- data/vendor/assets/javascripts/semantic-ui/modal.js +478 -0
- data/vendor/assets/javascripts/semantic-ui/nag.js +542 -0
- data/vendor/assets/javascripts/semantic-ui/popup.js +721 -0
- data/vendor/assets/javascripts/semantic-ui/rating.js +358 -0
- data/vendor/assets/javascripts/semantic-ui/search.js +770 -0
- data/vendor/assets/javascripts/semantic-ui/shape.js +776 -0
- data/vendor/assets/javascripts/semantic-ui/sidebar.js +489 -0
- data/vendor/assets/javascripts/semantic-ui/tab.js +674 -0
- data/vendor/assets/javascripts/semantic-ui/transition.js +645 -0
- data/vendor/assets/javascripts/semantic-ui/video.js +459 -0
- data/vendor/assets/stylesheets/semantic-ui/collections/breadcrumb.less +79 -0
- data/vendor/assets/stylesheets/semantic-ui/collections/form.less +536 -0
- data/vendor/assets/stylesheets/semantic-ui/collections/grid.less +655 -0
- data/vendor/assets/stylesheets/semantic-ui/collections/menu.less +1736 -0
- data/vendor/assets/stylesheets/semantic-ui/collections/message.less +337 -0
- data/vendor/assets/stylesheets/semantic-ui/collections/table.less +526 -0
- data/vendor/assets/stylesheets/semantic-ui/elements/button.less +1294 -0
- data/vendor/assets/stylesheets/semantic-ui/elements/divider.less +200 -0
- data/vendor/assets/stylesheets/semantic-ui/elements/header.less +325 -0
- data/vendor/assets/stylesheets/semantic-ui/elements/icon.less +449 -0
- data/vendor/assets/stylesheets/semantic-ui/elements/image.less +170 -0
- data/vendor/assets/stylesheets/semantic-ui/elements/input.less +287 -0
- data/vendor/assets/stylesheets/semantic-ui/elements/label.less +805 -0
- data/vendor/assets/stylesheets/semantic-ui/elements/loader.less +178 -0
- data/vendor/assets/stylesheets/semantic-ui/elements/progress.less +353 -0
- data/vendor/assets/stylesheets/semantic-ui/elements/segment.less +465 -0
- data/vendor/assets/stylesheets/semantic-ui/elements/step.less +294 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/accordion.less +135 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/carousel.less +71 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/chatroom.less +271 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/checkbox.less +378 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/dimmer.less +230 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/dropdown.less +506 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/extra.transition.less +1197 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/modal.less +154 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/nag.less +175 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/popup.less +238 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/rating.less +151 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/reveal.less +367 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/search.less +275 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/shape.less +115 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/sidebar.less +147 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/tab.less +59 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/transition.less +839 -0
- data/vendor/assets/stylesheets/semantic-ui/modules/video.less +99 -0
- data/vendor/assets/stylesheets/semantic-ui/views/comment.less +221 -0
- data/vendor/assets/stylesheets/semantic-ui/views/feed.less +151 -0
- data/vendor/assets/stylesheets/semantic-ui/views/item.less +641 -0
- data/vendor/assets/stylesheets/semantic-ui/views/list.less +491 -0
- data/vendor/assets/stylesheets/semantic-ui/views/sitemap.less +47 -0
- data/vendor/assets/stylesheets/semantic-ui/views/statistic.less +34 -0
- metadata +161 -0
@@ -0,0 +1,1197 @@
|
|
1
|
+
/*******************************
|
2
|
+
Semantic Module: Transition
|
3
|
+
Author: Jack Lukic
|
4
|
+
Notes: First Commit March 25, 2013
|
5
|
+
|
6
|
+
CSS animation definitions for
|
7
|
+
transition module
|
8
|
+
|
9
|
+
*******************************/
|
10
|
+
|
11
|
+
/*
|
12
|
+
Some transitions adapted from Animate CSS
|
13
|
+
https://github.com/daneden/animate.css
|
14
|
+
*/
|
15
|
+
|
16
|
+
|
17
|
+
.ui.transition {
|
18
|
+
-webkit-backface-visibility: hidden;
|
19
|
+
-moz-backface-visibility: hidden;
|
20
|
+
-ms-backface-visibility: hidden;
|
21
|
+
-o-backface-visibility: hidden;
|
22
|
+
backface-visibility: hidden;
|
23
|
+
|
24
|
+
-webkit-animation-iteration-count: 1;
|
25
|
+
-moz-animation-iteration-count: 1;
|
26
|
+
-ms-animation-iteration-count: 1;
|
27
|
+
-o-animation-iteration-count: 1;
|
28
|
+
animation-iteration-count: 1;
|
29
|
+
|
30
|
+
-webkit-animation-duration: 1s;
|
31
|
+
-moz-animation-duration: 1s;
|
32
|
+
-ms-animation-duration: 1s;
|
33
|
+
-o-animation-duration: 1s;
|
34
|
+
animation-duration: 1s;
|
35
|
+
|
36
|
+
animation-timing-function: ease;
|
37
|
+
-webkit-animation-timing-function: ease;
|
38
|
+
|
39
|
+
-webkit-animation-fill-mode: both;
|
40
|
+
-moz-animation-fill-mode: both;
|
41
|
+
-ms-animation-fill-mode: both;
|
42
|
+
-o-animation-fill-mode: both;
|
43
|
+
animation-fill-mode: both;
|
44
|
+
|
45
|
+
-webkit-transform: translateZ(0);
|
46
|
+
-moz-transform: translateZ(0);
|
47
|
+
-ms-transform: translateZ(0);
|
48
|
+
-o-transform: translateZ(0);
|
49
|
+
transform: translateZ(0);
|
50
|
+
}
|
51
|
+
|
52
|
+
/*******************************
|
53
|
+
States
|
54
|
+
*******************************/
|
55
|
+
|
56
|
+
/* Loading */
|
57
|
+
.ui.loading.transition {
|
58
|
+
position: absolute;
|
59
|
+
top: -999999px;
|
60
|
+
left: -99999px;
|
61
|
+
}
|
62
|
+
|
63
|
+
/* Hidden */
|
64
|
+
.ui.hidden.transition {
|
65
|
+
display: none;
|
66
|
+
}
|
67
|
+
|
68
|
+
/* Visible */
|
69
|
+
.ui.visible.transition {
|
70
|
+
display: block;
|
71
|
+
visibility: visible;
|
72
|
+
}
|
73
|
+
|
74
|
+
|
75
|
+
/* Direction */
|
76
|
+
.ui.out.transition {
|
77
|
+
-webkit-animation-direction: reverse;
|
78
|
+
-moz-animation-direction: reverse;
|
79
|
+
-o-animation-direction: reverse;
|
80
|
+
animation-direction: reverse;
|
81
|
+
}
|
82
|
+
|
83
|
+
/* Disabled */
|
84
|
+
.ui.disabled.transition {
|
85
|
+
-webkit-animation-play-state: paused;
|
86
|
+
-moz-animation-play-state: paused;
|
87
|
+
-ms-animation-play-state: paused;
|
88
|
+
-o-animation-play-state: paused;
|
89
|
+
animation-play-state: paused;
|
90
|
+
}
|
91
|
+
|
92
|
+
/*******************************
|
93
|
+
Variations
|
94
|
+
*******************************/
|
95
|
+
|
96
|
+
.ui.looping.transition {
|
97
|
+
-webkit-animation-iteration-count: infinite;
|
98
|
+
-moz-animation-iteration-count: infinite;
|
99
|
+
-ms-animation-iteration-count: infinite;
|
100
|
+
-o-animation-iteration-count: infinite;
|
101
|
+
animation-iteration-count: infinite;
|
102
|
+
}
|
103
|
+
|
104
|
+
/*******************************
|
105
|
+
Types
|
106
|
+
*******************************/
|
107
|
+
|
108
|
+
/*--------------
|
109
|
+
Moving
|
110
|
+
---------------*/
|
111
|
+
|
112
|
+
.ui.move.down.transition.in,
|
113
|
+
.ui.move.down.transition.out {
|
114
|
+
animation-name: moveDown;
|
115
|
+
-webkit-animation-name: moveDown;
|
116
|
+
|
117
|
+
animation-duration: 1s;
|
118
|
+
-webkit-animation-duration: 1s;
|
119
|
+
|
120
|
+
animation-timing-function: ease;
|
121
|
+
-webkit-animation-timing-function: ease;
|
122
|
+
}
|
123
|
+
|
124
|
+
@keyframes moveDown {
|
125
|
+
0% {
|
126
|
+
transform: translateY(-100%);
|
127
|
+
}
|
128
|
+
50%{
|
129
|
+
transform: translateY(8%);
|
130
|
+
}
|
131
|
+
65%{
|
132
|
+
transform: translateY(-4%);
|
133
|
+
}
|
134
|
+
80%{
|
135
|
+
transform: translateY(4%);
|
136
|
+
}
|
137
|
+
95%{
|
138
|
+
transform: translateY(-2%);
|
139
|
+
}
|
140
|
+
100% {
|
141
|
+
transform: translateY(0%);
|
142
|
+
}
|
143
|
+
}
|
144
|
+
|
145
|
+
@-webkit-keyframes moveDown {
|
146
|
+
0% {
|
147
|
+
-webkit-transform: translateY(-100%);
|
148
|
+
}
|
149
|
+
50%{
|
150
|
+
-webkit-transform: translateY(8%);
|
151
|
+
}
|
152
|
+
65%{
|
153
|
+
-webkit-transform: translateY(-4%);
|
154
|
+
}
|
155
|
+
80%{
|
156
|
+
-webkit-transform: translateY(4%);
|
157
|
+
}
|
158
|
+
95%{
|
159
|
+
-webkit-transform: translateY(-2%);
|
160
|
+
}
|
161
|
+
100% {
|
162
|
+
-webkit-transform: translateY(0%);
|
163
|
+
}
|
164
|
+
}
|
165
|
+
|
166
|
+
.ui.move.up.transition.in,
|
167
|
+
.ui.move.up.transition.out {
|
168
|
+
animation-name: moveUp;
|
169
|
+
-webkit-animation-name: moveUp;
|
170
|
+
|
171
|
+
animation-duration: 1s;
|
172
|
+
-webkit-animation-duration: 1s;
|
173
|
+
|
174
|
+
animation-timing-function: ease;
|
175
|
+
-webkit-animation-timing-function: ease;
|
176
|
+
}
|
177
|
+
|
178
|
+
@keyframes moveUp {
|
179
|
+
0% {
|
180
|
+
transform: translateY(100%);
|
181
|
+
}
|
182
|
+
50%{
|
183
|
+
transform: translateY(-8%);
|
184
|
+
}
|
185
|
+
65%{
|
186
|
+
transform: translateY(4%);
|
187
|
+
}
|
188
|
+
80%{
|
189
|
+
transform: translateY(-4%);
|
190
|
+
}
|
191
|
+
95%{
|
192
|
+
transform: translateY(2%);
|
193
|
+
}
|
194
|
+
100% {
|
195
|
+
transform: translateY(0%);
|
196
|
+
}
|
197
|
+
}
|
198
|
+
|
199
|
+
@-webkit-keyframes moveUp {
|
200
|
+
0% {
|
201
|
+
-webkit-transform: translateY(100%);
|
202
|
+
}
|
203
|
+
50%{
|
204
|
+
-webkit-transform: translateY(-8%);
|
205
|
+
}
|
206
|
+
65%{
|
207
|
+
-webkit-transform: translateY(4%);
|
208
|
+
}
|
209
|
+
80%{
|
210
|
+
-webkit-transform: translateY(-4%);
|
211
|
+
}
|
212
|
+
95%{
|
213
|
+
-webkit-transform: translateY(2%);
|
214
|
+
}
|
215
|
+
100% {
|
216
|
+
-webkit-transform: translateY(0%);
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
|
221
|
+
.ui.move.left.transition.in,
|
222
|
+
.ui.move.left.transition.out {
|
223
|
+
animation-name: moveLeft;
|
224
|
+
-webkit-animation-name: moveLeft;
|
225
|
+
|
226
|
+
animation-duration: 1s;
|
227
|
+
-webkit-animation-duration: 1s;
|
228
|
+
|
229
|
+
animation-timing-function: ease-in-out;
|
230
|
+
-webkit-animation-timing-function: ease-in-out;
|
231
|
+
|
232
|
+
visibility: visible !important;
|
233
|
+
}
|
234
|
+
|
235
|
+
@keyframes moveLeft {
|
236
|
+
0% {
|
237
|
+
transform: translateX(150%);
|
238
|
+
}
|
239
|
+
50%{
|
240
|
+
ransform: translateX(-8%);
|
241
|
+
}
|
242
|
+
65%{
|
243
|
+
transform: translateX(4%);
|
244
|
+
}
|
245
|
+
80%{
|
246
|
+
transform: translateX(-4%);
|
247
|
+
}
|
248
|
+
95%{
|
249
|
+
transform: translateX(2%);
|
250
|
+
}
|
251
|
+
100% {
|
252
|
+
transform: translateX(0%);
|
253
|
+
}
|
254
|
+
}
|
255
|
+
|
256
|
+
@-webkit-keyframes moveLeft {
|
257
|
+
0% {
|
258
|
+
-webkit-transform: translateX(150%);
|
259
|
+
}
|
260
|
+
50%{
|
261
|
+
-webkit-transform: translateX(-8%);
|
262
|
+
}
|
263
|
+
65%{
|
264
|
+
-webkit-transform: translateX(4%);
|
265
|
+
}
|
266
|
+
80%{
|
267
|
+
-webkit-transform: translateX(-4%);
|
268
|
+
}
|
269
|
+
95%{
|
270
|
+
-webkit-transform: translateX(2%);
|
271
|
+
}
|
272
|
+
100% {
|
273
|
+
-webkit-transform: translateX(0%);
|
274
|
+
}
|
275
|
+
}
|
276
|
+
|
277
|
+
|
278
|
+
.ui.move.right.transition.in,
|
279
|
+
.ui.move.right.transition.out {
|
280
|
+
animation-name: moveRight;
|
281
|
+
-webkit-animation-name: moveRight;
|
282
|
+
|
283
|
+
animation-duration: 1s;
|
284
|
+
-webkit-animation-duration: 1s;
|
285
|
+
|
286
|
+
animation-timing-function: ease-in-out;
|
287
|
+
-webkit-animation-timing-function: ease-in-out;
|
288
|
+
|
289
|
+
visibility: visible !important;
|
290
|
+
}
|
291
|
+
|
292
|
+
@keyframes moveRight {
|
293
|
+
0% {
|
294
|
+
transform: translateX(-150%);
|
295
|
+
}
|
296
|
+
50%{
|
297
|
+
transform: translateX(8%);
|
298
|
+
}
|
299
|
+
65%{
|
300
|
+
transform: translateX(-4%);
|
301
|
+
}
|
302
|
+
80%{
|
303
|
+
transform: translateX(4%);
|
304
|
+
}
|
305
|
+
95%{
|
306
|
+
transform: translateX(-2%);
|
307
|
+
}
|
308
|
+
100% {
|
309
|
+
transform: translateX(0%);
|
310
|
+
}
|
311
|
+
}
|
312
|
+
|
313
|
+
@-webkit-keyframes moveRight {
|
314
|
+
0% {
|
315
|
+
-webkit-transform: translateX(-150%);
|
316
|
+
}
|
317
|
+
50%{
|
318
|
+
-webkit-transform: translateX(8%);
|
319
|
+
}
|
320
|
+
65%{
|
321
|
+
-webkit-transform: translateX(-4%);
|
322
|
+
}
|
323
|
+
80%{
|
324
|
+
-webkit-transform: translateX(4%);
|
325
|
+
}
|
326
|
+
95%{
|
327
|
+
-webkit-transform: translateX(-2%);
|
328
|
+
}
|
329
|
+
100% {
|
330
|
+
-webkit-transform: translateX(0%);
|
331
|
+
}
|
332
|
+
}
|
333
|
+
|
334
|
+
/*
|
335
|
+
==============================================
|
336
|
+
slideExpandUp
|
337
|
+
==============================================
|
338
|
+
*/
|
339
|
+
|
340
|
+
|
341
|
+
.slideExpandUp{
|
342
|
+
animation-name: slideExpandUp;
|
343
|
+
-webkit-animation-name: slideExpandUp;
|
344
|
+
|
345
|
+
animation-duration: 1.6s;
|
346
|
+
-webkit-animation-duration: 1.6s;
|
347
|
+
|
348
|
+
animation-timing-function: ease-out;
|
349
|
+
-webkit-animation-timing-function: ease -out;
|
350
|
+
|
351
|
+
visibility: visible !important;
|
352
|
+
}
|
353
|
+
|
354
|
+
@keyframes slideExpandUp {
|
355
|
+
0% {
|
356
|
+
transform: translateY(100%) scaleX(0.5);
|
357
|
+
}
|
358
|
+
30%{
|
359
|
+
transform: translateY(-8%) scaleX(0.5);
|
360
|
+
}
|
361
|
+
40%{
|
362
|
+
transform: translateY(2%) scaleX(0.5);
|
363
|
+
}
|
364
|
+
50%{
|
365
|
+
transform: translateY(0%) scaleX(1.1);
|
366
|
+
}
|
367
|
+
60%{
|
368
|
+
transform: translateY(0%) scaleX(0.9);
|
369
|
+
}
|
370
|
+
70% {
|
371
|
+
transform: translateY(0%) scaleX(1.05);
|
372
|
+
}
|
373
|
+
80%{
|
374
|
+
transform: translateY(0%) scaleX(0.95);
|
375
|
+
}
|
376
|
+
90% {
|
377
|
+
transform: translateY(0%) scaleX(1.02);
|
378
|
+
}
|
379
|
+
100%{
|
380
|
+
transform: translateY(0%) scaleX(1);
|
381
|
+
}
|
382
|
+
}
|
383
|
+
|
384
|
+
@-webkit-keyframes slideExpandUp {
|
385
|
+
0% {
|
386
|
+
-webkit-transform: translateY(100%) scaleX(0.5);
|
387
|
+
}
|
388
|
+
30%{
|
389
|
+
-webkit-transform: translateY(-8%) scaleX(0.5);
|
390
|
+
}
|
391
|
+
40%{
|
392
|
+
-webkit-transform: translateY(2%) scaleX(0.5);
|
393
|
+
}
|
394
|
+
50%{
|
395
|
+
-webkit-transform: translateY(0%) scaleX(1.1);
|
396
|
+
}
|
397
|
+
60%{
|
398
|
+
-webkit-transform: translateY(0%) scaleX(0.9);
|
399
|
+
}
|
400
|
+
70% {
|
401
|
+
-webkit-transform: translateY(0%) scaleX(1.05);
|
402
|
+
}
|
403
|
+
80%{
|
404
|
+
-webkit-transform: translateY(0%) scaleX(0.95);
|
405
|
+
}
|
406
|
+
90% {
|
407
|
+
-webkit-transform: translateY(0%) scaleX(1.02);
|
408
|
+
}
|
409
|
+
100%{
|
410
|
+
-webkit-transform: translateY(0%) scaleX(1);
|
411
|
+
}
|
412
|
+
}
|
413
|
+
|
414
|
+
/*
|
415
|
+
==============================================
|
416
|
+
expandUp
|
417
|
+
==============================================
|
418
|
+
*/
|
419
|
+
|
420
|
+
|
421
|
+
.expandUp{
|
422
|
+
animation-name: expandUp;
|
423
|
+
-webkit-animation-name: expandUp;
|
424
|
+
|
425
|
+
animation-duration: 0.7s;
|
426
|
+
-webkit-animation-duration: 0.7s;
|
427
|
+
|
428
|
+
animation-timing-function: ease;
|
429
|
+
-webkit-animation-timing-function: ease;
|
430
|
+
|
431
|
+
visibility: visible !important;
|
432
|
+
}
|
433
|
+
|
434
|
+
@keyframes expandUp {
|
435
|
+
0% {
|
436
|
+
transform: translateY(100%) scale(0.6) scaleY(0.5);
|
437
|
+
}
|
438
|
+
60%{
|
439
|
+
transform: translateY(-7%) scaleY(1.12);
|
440
|
+
}
|
441
|
+
75%{
|
442
|
+
transform: translateY(3%);
|
443
|
+
}
|
444
|
+
100% {
|
445
|
+
transform: translateY(0%) scale(1) scaleY(1);
|
446
|
+
}
|
447
|
+
}
|
448
|
+
|
449
|
+
@-webkit-keyframes expandUp {
|
450
|
+
0% {
|
451
|
+
-webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
|
452
|
+
}
|
453
|
+
60%{
|
454
|
+
-webkit-transform: translateY(-7%) scaleY(1.12);
|
455
|
+
}
|
456
|
+
75%{
|
457
|
+
-webkit-transform: translateY(3%);
|
458
|
+
}
|
459
|
+
100% {
|
460
|
+
-webkit-transform: translateY(0%) scale(1) scaleY(1);
|
461
|
+
}
|
462
|
+
}
|
463
|
+
|
464
|
+
/*
|
465
|
+
==============================================
|
466
|
+
fadeIn
|
467
|
+
==============================================
|
468
|
+
*/
|
469
|
+
|
470
|
+
.fadeIn{
|
471
|
+
animation-name: fadeIn;
|
472
|
+
-webkit-animation-name: fadeIn;
|
473
|
+
|
474
|
+
animation-duration: 1.5s;
|
475
|
+
-webkit-animation-duration: 1.5s;
|
476
|
+
|
477
|
+
animation-timing-function: ease-in-out;
|
478
|
+
-webkit-animation-timing-function: ease-in-out;
|
479
|
+
|
480
|
+
visibility: visible !important;
|
481
|
+
}
|
482
|
+
|
483
|
+
@keyframes fadeIn {
|
484
|
+
0% {
|
485
|
+
transform: scale(0);
|
486
|
+
opacity: 0.0;
|
487
|
+
}
|
488
|
+
60% {
|
489
|
+
transform: scale(1.1);
|
490
|
+
}
|
491
|
+
80% {
|
492
|
+
transform: scale(0.9);
|
493
|
+
opacity: 1;
|
494
|
+
}
|
495
|
+
100% {
|
496
|
+
transform: scale(1);
|
497
|
+
opacity: 1;
|
498
|
+
}
|
499
|
+
}
|
500
|
+
|
501
|
+
@-webkit-keyframes fadeIn {
|
502
|
+
0% {
|
503
|
+
-webkit-transform: scale(0);
|
504
|
+
opacity: 0.0;
|
505
|
+
}
|
506
|
+
60% {
|
507
|
+
-webkit-transform: scale(1.1);
|
508
|
+
}
|
509
|
+
80% {
|
510
|
+
-webkit-transform: scale(0.9);
|
511
|
+
opacity: 1;
|
512
|
+
}
|
513
|
+
100% {
|
514
|
+
-webkit-transform: scale(1);
|
515
|
+
opacity: 1;
|
516
|
+
}
|
517
|
+
}
|
518
|
+
|
519
|
+
/*
|
520
|
+
==============================================
|
521
|
+
expandOpen
|
522
|
+
==============================================
|
523
|
+
*/
|
524
|
+
|
525
|
+
|
526
|
+
.expandOpen{
|
527
|
+
animation-name: expandOpen;
|
528
|
+
-webkit-animation-name: expandOpen;
|
529
|
+
|
530
|
+
animation-duration: 1.2s;
|
531
|
+
-webkit-animation-duration: 1.2s;
|
532
|
+
|
533
|
+
animation-timing-function: ease-out;
|
534
|
+
-webkit-animation-timing-function: ease-out;
|
535
|
+
|
536
|
+
visibility: visible !important;
|
537
|
+
}
|
538
|
+
|
539
|
+
@keyframes expandOpen {
|
540
|
+
0% {
|
541
|
+
transform: scale(1.8);
|
542
|
+
}
|
543
|
+
50% {
|
544
|
+
transform: scale(0.95);
|
545
|
+
}
|
546
|
+
80% {
|
547
|
+
transform: scale(1.05);
|
548
|
+
}
|
549
|
+
90% {
|
550
|
+
transform: scale(0.98);
|
551
|
+
}
|
552
|
+
100% {
|
553
|
+
transform: scale(1);
|
554
|
+
}
|
555
|
+
}
|
556
|
+
|
557
|
+
@-webkit-keyframes expandOpen {
|
558
|
+
0% {
|
559
|
+
-webkit-transform: scale(1.8);
|
560
|
+
}
|
561
|
+
50% {
|
562
|
+
-webkit-transform: scale(0.95);
|
563
|
+
}
|
564
|
+
80% {
|
565
|
+
-webkit-transform: scale(1.05);
|
566
|
+
}
|
567
|
+
90% {
|
568
|
+
-webkit-transform: scale(0.98);
|
569
|
+
}
|
570
|
+
100% {
|
571
|
+
-webkit-transform: scale(1);
|
572
|
+
}
|
573
|
+
}
|
574
|
+
|
575
|
+
/*
|
576
|
+
==============================================
|
577
|
+
bigEntrance
|
578
|
+
==============================================
|
579
|
+
*/
|
580
|
+
|
581
|
+
|
582
|
+
.bigEntrance{
|
583
|
+
animation-name: bigEntrance;
|
584
|
+
-webkit-animation-name: bigEntrance;
|
585
|
+
|
586
|
+
animation-duration: 1.6s;
|
587
|
+
-webkit-animation-duration: 1.6s;
|
588
|
+
|
589
|
+
animation-timing-function: ease-out;
|
590
|
+
-webkit-animation-timing-function: ease-out;
|
591
|
+
|
592
|
+
visibility: visible !important;
|
593
|
+
}
|
594
|
+
|
595
|
+
@keyframes bigEntrance {
|
596
|
+
0% {
|
597
|
+
transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
|
598
|
+
opacity: 0.2;
|
599
|
+
}
|
600
|
+
30% {
|
601
|
+
transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
|
602
|
+
opacity: 1;
|
603
|
+
}
|
604
|
+
45% {
|
605
|
+
transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
|
606
|
+
opacity: 1;
|
607
|
+
}
|
608
|
+
60% {
|
609
|
+
transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
|
610
|
+
opacity: 1;
|
611
|
+
}
|
612
|
+
75% {
|
613
|
+
transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
|
614
|
+
opacity: 1;
|
615
|
+
}
|
616
|
+
90% {
|
617
|
+
transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
|
618
|
+
opacity: 1;
|
619
|
+
}
|
620
|
+
100% {
|
621
|
+
transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
|
622
|
+
opacity: 1;
|
623
|
+
}
|
624
|
+
}
|
625
|
+
|
626
|
+
@-webkit-keyframes bigEntrance {
|
627
|
+
0% {
|
628
|
+
-webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
|
629
|
+
opacity: 0.2;
|
630
|
+
}
|
631
|
+
30% {
|
632
|
+
-webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
|
633
|
+
opacity: 1;
|
634
|
+
}
|
635
|
+
45% {
|
636
|
+
-webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
|
637
|
+
opacity: 1;
|
638
|
+
}
|
639
|
+
60% {
|
640
|
+
-webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
|
641
|
+
opacity: 1;
|
642
|
+
}
|
643
|
+
75% {
|
644
|
+
-webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
|
645
|
+
opacity: 1;
|
646
|
+
}
|
647
|
+
90% {
|
648
|
+
-webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
|
649
|
+
opacity: 1;
|
650
|
+
}
|
651
|
+
100% {
|
652
|
+
-webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
|
653
|
+
opacity: 1;
|
654
|
+
}
|
655
|
+
}
|
656
|
+
|
657
|
+
/*
|
658
|
+
==============================================
|
659
|
+
hatch
|
660
|
+
==============================================
|
661
|
+
*/
|
662
|
+
|
663
|
+
.hatch{
|
664
|
+
animation-name: hatch;
|
665
|
+
-webkit-animation-name: hatch;
|
666
|
+
|
667
|
+
animation-duration: 2s;
|
668
|
+
-webkit-animation-duration: 2s;
|
669
|
+
|
670
|
+
animation-timing-function: ease-in-out;
|
671
|
+
-webkit-animation-timing-function: ease-in-out;
|
672
|
+
|
673
|
+
transform-origin: 50% 100%;
|
674
|
+
-ms-transform-origin: 50% 100%;
|
675
|
+
-webkit-transform-origin: 50% 100%;
|
676
|
+
|
677
|
+
visibility: visible !important;
|
678
|
+
}
|
679
|
+
|
680
|
+
@keyframes hatch {
|
681
|
+
0% {
|
682
|
+
transform: rotate(0deg) scaleY(0.6);
|
683
|
+
}
|
684
|
+
20% {
|
685
|
+
transform: rotate(-2deg) scaleY(1.05);
|
686
|
+
}
|
687
|
+
35% {
|
688
|
+
transform: rotate(2deg) scaleY(1);
|
689
|
+
}
|
690
|
+
50% {
|
691
|
+
transform: rotate(-2deg);
|
692
|
+
}
|
693
|
+
65% {
|
694
|
+
transform: rotate(1deg);
|
695
|
+
}
|
696
|
+
80% {
|
697
|
+
transform: rotate(-1deg);
|
698
|
+
}
|
699
|
+
100% {
|
700
|
+
transform: rotate(0deg);
|
701
|
+
}
|
702
|
+
}
|
703
|
+
|
704
|
+
@-webkit-keyframes hatch {
|
705
|
+
0% {
|
706
|
+
-webkit-transform: rotate(0deg) scaleY(0.6);
|
707
|
+
}
|
708
|
+
20% {
|
709
|
+
-webkit-transform: rotate(-2deg) scaleY(1.05);
|
710
|
+
}
|
711
|
+
35% {
|
712
|
+
-webkit-transform: rotate(2deg) scaleY(1);
|
713
|
+
}
|
714
|
+
50% {
|
715
|
+
-webkit-transform: rotate(-2deg);
|
716
|
+
}
|
717
|
+
65% {
|
718
|
+
-webkit-transform: rotate(1deg);
|
719
|
+
}
|
720
|
+
80% {
|
721
|
+
-webkit-transform: rotate(-1deg);
|
722
|
+
}
|
723
|
+
100% {
|
724
|
+
-webkit-transform: rotate(0deg);
|
725
|
+
}
|
726
|
+
}
|
727
|
+
|
728
|
+
|
729
|
+
/*
|
730
|
+
==============================================
|
731
|
+
bounce
|
732
|
+
==============================================
|
733
|
+
*/
|
734
|
+
|
735
|
+
|
736
|
+
.bounce{
|
737
|
+
animation-name: bounce;
|
738
|
+
-webkit-animation-name: bounce;
|
739
|
+
|
740
|
+
animation-duration: 1.6s;
|
741
|
+
-webkit-animation-duration: 1.6s;
|
742
|
+
|
743
|
+
animation-timing-function: ease;
|
744
|
+
-webkit-animation-timing-function: ease;
|
745
|
+
|
746
|
+
transform-origin: 50% 100%;
|
747
|
+
-ms-transform-origin: 50% 100%;
|
748
|
+
-webkit-transform-origin: 50% 100%;
|
749
|
+
}
|
750
|
+
|
751
|
+
@keyframes bounce {
|
752
|
+
0% {
|
753
|
+
transform: translateY(0%) scaleY(0.6);
|
754
|
+
}
|
755
|
+
60%{
|
756
|
+
transform: translateY(-100%) scaleY(1.1);
|
757
|
+
}
|
758
|
+
70%{
|
759
|
+
transform: translateY(0%) scaleY(0.95) scaleX(1.05);
|
760
|
+
}
|
761
|
+
80%{
|
762
|
+
transform: translateY(0%) scaleY(1.05) scaleX(1);
|
763
|
+
}
|
764
|
+
90%{
|
765
|
+
transform: translateY(0%) scaleY(0.95) scaleX(1);
|
766
|
+
}
|
767
|
+
100%{
|
768
|
+
transform: translateY(0%) scaleY(1) scaleX(1);
|
769
|
+
}
|
770
|
+
}
|
771
|
+
|
772
|
+
@-webkit-keyframes bounce {
|
773
|
+
0% {
|
774
|
+
-webkit-transform: translateY(0%) scaleY(0.6);
|
775
|
+
}
|
776
|
+
60%{
|
777
|
+
-webkit-transform: translateY(-100%) scaleY(1.1);
|
778
|
+
}
|
779
|
+
70%{
|
780
|
+
-webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
|
781
|
+
}
|
782
|
+
80%{
|
783
|
+
-webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
|
784
|
+
}
|
785
|
+
90%{
|
786
|
+
-webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
|
787
|
+
}
|
788
|
+
100%{
|
789
|
+
-webkit-transform: translateY(0%) scaleY(1) scaleX(1);
|
790
|
+
}
|
791
|
+
}
|
792
|
+
|
793
|
+
|
794
|
+
/*
|
795
|
+
==============================================
|
796
|
+
pulse
|
797
|
+
==============================================
|
798
|
+
*/
|
799
|
+
|
800
|
+
.pulse{
|
801
|
+
animation-name: pulse;
|
802
|
+
-webkit-animation-name: pulse;
|
803
|
+
|
804
|
+
animation-duration: 1.5s;
|
805
|
+
-webkit-animation-duration: 1.5s;
|
806
|
+
|
807
|
+
animation-iteration-count: infinite;
|
808
|
+
-webkit-animation-iteration-count: infinite;
|
809
|
+
}
|
810
|
+
|
811
|
+
@keyframes pulse {
|
812
|
+
0% {
|
813
|
+
transform: scale(0.9);
|
814
|
+
opacity: 0.7;
|
815
|
+
}
|
816
|
+
50% {
|
817
|
+
ransform: scale(1);
|
818
|
+
opacity: 1;
|
819
|
+
}
|
820
|
+
100% {
|
821
|
+
transform: scale(0.9);
|
822
|
+
opacity: 0.7;
|
823
|
+
}
|
824
|
+
}
|
825
|
+
|
826
|
+
@-webkit-keyframes pulse {
|
827
|
+
0% {
|
828
|
+
-webkit-transform: scale(0.95);
|
829
|
+
opacity: 0.7;
|
830
|
+
}
|
831
|
+
50% {
|
832
|
+
-webkit-transform: scale(1);
|
833
|
+
opacity: 1;
|
834
|
+
}
|
835
|
+
100% {
|
836
|
+
-webkit-transform: scale(0.95);
|
837
|
+
opacity: 0.7;
|
838
|
+
}
|
839
|
+
}
|
840
|
+
|
841
|
+
/*
|
842
|
+
==============================================
|
843
|
+
floating
|
844
|
+
==============================================
|
845
|
+
*/
|
846
|
+
|
847
|
+
.floating{
|
848
|
+
animation-name: floating;
|
849
|
+
-webkit-animation-name: floating;
|
850
|
+
|
851
|
+
animation-duration: 1.5s;
|
852
|
+
-webkit-animation-duration: 1.5s;
|
853
|
+
|
854
|
+
animation-iteration-count: infinite;
|
855
|
+
-webkit-animation-iteration-count: infinite;
|
856
|
+
}
|
857
|
+
|
858
|
+
@keyframes floating {
|
859
|
+
0% {
|
860
|
+
transform: translateY(0%);
|
861
|
+
}
|
862
|
+
50% {
|
863
|
+
transform: translateY(8%);
|
864
|
+
}
|
865
|
+
100% {
|
866
|
+
transform: translateY(0%);
|
867
|
+
}
|
868
|
+
}
|
869
|
+
|
870
|
+
@-webkit-keyframes floating {
|
871
|
+
0% {
|
872
|
+
-webkit-transform: translateY(0%);
|
873
|
+
}
|
874
|
+
50% {
|
875
|
+
-webkit-transform: translateY(8%);
|
876
|
+
}
|
877
|
+
100% {
|
878
|
+
-webkit-transform: translateY(0%);
|
879
|
+
}
|
880
|
+
}
|
881
|
+
|
882
|
+
/*
|
883
|
+
==============================================
|
884
|
+
tossing
|
885
|
+
==============================================
|
886
|
+
*/
|
887
|
+
|
888
|
+
.tossing{
|
889
|
+
animation-name: tossing;
|
890
|
+
-webkit-animation-name: tossing;
|
891
|
+
|
892
|
+
animation-duration: 2.5s;
|
893
|
+
-webkit-animation-duration: 2.5s;
|
894
|
+
|
895
|
+
animation-iteration-count: infinite;
|
896
|
+
-webkit-animation-iteration-count: infinite;
|
897
|
+
}
|
898
|
+
|
899
|
+
@keyframes tossing {
|
900
|
+
0% {
|
901
|
+
transform: rotate(-4deg);
|
902
|
+
}
|
903
|
+
50% {
|
904
|
+
transform: rotate(4deg);
|
905
|
+
}
|
906
|
+
100% {
|
907
|
+
transform: rotate(-4deg);
|
908
|
+
}
|
909
|
+
}
|
910
|
+
|
911
|
+
@-webkit-keyframes tossing {
|
912
|
+
0% {
|
913
|
+
-webkit-transform: rotate(-4deg);
|
914
|
+
}
|
915
|
+
50% {
|
916
|
+
-webkit-transform: rotate(4deg);
|
917
|
+
}
|
918
|
+
100% {
|
919
|
+
-webkit-transform: rotate(-4deg);
|
920
|
+
}
|
921
|
+
}
|
922
|
+
|
923
|
+
/*
|
924
|
+
==============================================
|
925
|
+
pullUp
|
926
|
+
==============================================
|
927
|
+
*/
|
928
|
+
|
929
|
+
.pullUp{
|
930
|
+
animation-name: pullUp;
|
931
|
+
-webkit-animation-name: pullUp;
|
932
|
+
|
933
|
+
animation-duration: 1.1s;
|
934
|
+
-webkit-animation-duration: 1.1s;
|
935
|
+
|
936
|
+
animation-timing-function: ease-out;
|
937
|
+
-webkit-animation-timing-function: ease-out;
|
938
|
+
|
939
|
+
transform-origin: 50% 100%;
|
940
|
+
-ms-transform-origin: 50% 100%;
|
941
|
+
-webkit-transform-origin: 50% 100%;
|
942
|
+
}
|
943
|
+
|
944
|
+
@keyframes pullUp {
|
945
|
+
0% {
|
946
|
+
transform: scaleY(0.1);
|
947
|
+
}
|
948
|
+
40% {
|
949
|
+
transform: scaleY(1.02);
|
950
|
+
}
|
951
|
+
60% {
|
952
|
+
transform: scaleY(0.98);
|
953
|
+
}
|
954
|
+
80% {
|
955
|
+
transform: scaleY(1.01);
|
956
|
+
}
|
957
|
+
100% {
|
958
|
+
transform: scaleY(0.98);
|
959
|
+
}
|
960
|
+
80% {
|
961
|
+
transform: scaleY(1.01);
|
962
|
+
}
|
963
|
+
100% {
|
964
|
+
transform: scaleY(1);
|
965
|
+
}
|
966
|
+
}
|
967
|
+
|
968
|
+
@-webkit-keyframes pullUp {
|
969
|
+
0% {
|
970
|
+
-webkit-transform: scaleY(0.1);
|
971
|
+
}
|
972
|
+
40% {
|
973
|
+
-webkit-transform: scaleY(1.02);
|
974
|
+
}
|
975
|
+
60% {
|
976
|
+
-webkit-transform: scaleY(0.98);
|
977
|
+
}
|
978
|
+
80% {
|
979
|
+
-webkit-transform: scaleY(1.01);
|
980
|
+
}
|
981
|
+
100% {
|
982
|
+
-webkit-transform: scaleY(0.98);
|
983
|
+
}
|
984
|
+
80% {
|
985
|
+
-webkit-transform: scaleY(1.01);
|
986
|
+
}
|
987
|
+
100% {
|
988
|
+
-webkit-transform: scaleY(1);
|
989
|
+
}
|
990
|
+
}
|
991
|
+
|
992
|
+
/*
|
993
|
+
==============================================
|
994
|
+
pullDown
|
995
|
+
==============================================
|
996
|
+
*/
|
997
|
+
|
998
|
+
.pullDown{
|
999
|
+
animation-name: pullDown;
|
1000
|
+
-webkit-animation-name: pullDown;
|
1001
|
+
|
1002
|
+
animation-duration: 1.1s;
|
1003
|
+
-webkit-animation-duration: 1.1s;
|
1004
|
+
|
1005
|
+
animation-timing-function: ease-out;
|
1006
|
+
-webkit-animation-timing-function: ease-out;
|
1007
|
+
|
1008
|
+
transform-origin: 50% 0%;
|
1009
|
+
-ms-transform-origin: 50% 0%;
|
1010
|
+
-webkit-transform-origin: 50% 0%;
|
1011
|
+
}
|
1012
|
+
|
1013
|
+
@keyframes pullDown {
|
1014
|
+
0% {
|
1015
|
+
transform: scaleY(0.1);
|
1016
|
+
}
|
1017
|
+
40% {
|
1018
|
+
transform: scaleY(1.02);
|
1019
|
+
}
|
1020
|
+
60% {
|
1021
|
+
transform: scaleY(0.98);
|
1022
|
+
}
|
1023
|
+
80% {
|
1024
|
+
transform: scaleY(1.01);
|
1025
|
+
}
|
1026
|
+
100% {
|
1027
|
+
transform: scaleY(0.98);
|
1028
|
+
}
|
1029
|
+
80% {
|
1030
|
+
transform: scaleY(1.01);
|
1031
|
+
}
|
1032
|
+
100% {
|
1033
|
+
transform: scaleY(1);
|
1034
|
+
}
|
1035
|
+
}
|
1036
|
+
|
1037
|
+
@-webkit-keyframes pullDown {
|
1038
|
+
0% {
|
1039
|
+
-webkit-transform: scaleY(0.1);
|
1040
|
+
}
|
1041
|
+
40% {
|
1042
|
+
-webkit-transform: scaleY(1.02);
|
1043
|
+
}
|
1044
|
+
60% {
|
1045
|
+
-webkit-transform: scaleY(0.98);
|
1046
|
+
}
|
1047
|
+
80% {
|
1048
|
+
-webkit-transform: scaleY(1.01);
|
1049
|
+
}
|
1050
|
+
100% {
|
1051
|
+
-webkit-transform: scaleY(0.98);
|
1052
|
+
}
|
1053
|
+
80% {
|
1054
|
+
-webkit-transform: scaleY(1.01);
|
1055
|
+
}
|
1056
|
+
100% {
|
1057
|
+
-webkit-transform: scaleY(1);
|
1058
|
+
}
|
1059
|
+
}
|
1060
|
+
|
1061
|
+
/*
|
1062
|
+
==============================================
|
1063
|
+
stretchLeft
|
1064
|
+
==============================================
|
1065
|
+
*/
|
1066
|
+
|
1067
|
+
.stretchLeft{
|
1068
|
+
animation-name: stretchLeft;
|
1069
|
+
-webkit-animation-name: stretchLeft;
|
1070
|
+
|
1071
|
+
animation-duration: 1.5s;
|
1072
|
+
-webkit-animation-duration: 1.5s;
|
1073
|
+
|
1074
|
+
animation-timing-function: ease-out;
|
1075
|
+
-webkit-animation-timing-function: ease-out;
|
1076
|
+
|
1077
|
+
transform-origin: 100% 0%;
|
1078
|
+
-ms-transform-origin: 100% 0%;
|
1079
|
+
-webkit-transform-origin: 100% 0%;
|
1080
|
+
}
|
1081
|
+
|
1082
|
+
@keyframes stretchLeft {
|
1083
|
+
0% {
|
1084
|
+
transform: scaleX(0.3);
|
1085
|
+
}
|
1086
|
+
40% {
|
1087
|
+
transform: scaleX(1.02);
|
1088
|
+
}
|
1089
|
+
60% {
|
1090
|
+
transform: scaleX(0.98);
|
1091
|
+
}
|
1092
|
+
80% {
|
1093
|
+
transform: scaleX(1.01);
|
1094
|
+
}
|
1095
|
+
100% {
|
1096
|
+
transform: scaleX(0.98);
|
1097
|
+
}
|
1098
|
+
80% {
|
1099
|
+
transform: scaleX(1.01);
|
1100
|
+
}
|
1101
|
+
100% {
|
1102
|
+
transform: scaleX(1);
|
1103
|
+
}
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
@-webkit-keyframes stretchLeft {
|
1107
|
+
0% {
|
1108
|
+
-webkit-transform: scaleX(0.3);
|
1109
|
+
}
|
1110
|
+
40% {
|
1111
|
+
-webkit-transform: scaleX(1.02);
|
1112
|
+
}
|
1113
|
+
60% {
|
1114
|
+
-webkit-transform: scaleX(0.98);
|
1115
|
+
}
|
1116
|
+
80% {
|
1117
|
+
-webkit-transform: scaleX(1.01);
|
1118
|
+
}
|
1119
|
+
100% {
|
1120
|
+
-webkit-transform: scaleX(0.98);
|
1121
|
+
}
|
1122
|
+
80% {
|
1123
|
+
-webkit-transform: scaleX(1.01);
|
1124
|
+
}
|
1125
|
+
100% {
|
1126
|
+
-webkit-transform: scaleX(1);
|
1127
|
+
}
|
1128
|
+
}
|
1129
|
+
|
1130
|
+
/*
|
1131
|
+
==============================================
|
1132
|
+
stretchRight
|
1133
|
+
==============================================
|
1134
|
+
*/
|
1135
|
+
|
1136
|
+
.stretchRight{
|
1137
|
+
animation-name: stretchRight;
|
1138
|
+
-webkit-animation-name: stretchRight;
|
1139
|
+
|
1140
|
+
animation-duration: 1.5s;
|
1141
|
+
-webkit-animation-duration: 1.5s;
|
1142
|
+
|
1143
|
+
animation-timing-function: ease-out;
|
1144
|
+
-webkit-animation-timing-function: ease-out;
|
1145
|
+
|
1146
|
+
transform-origin: 0% 0%;
|
1147
|
+
-ms-transform-origin: 0% 0%;
|
1148
|
+
-webkit-transform-origin: 0% 0%;
|
1149
|
+
}
|
1150
|
+
|
1151
|
+
@keyframes stretchRight {
|
1152
|
+
0% {
|
1153
|
+
transform: scaleX(0.3);
|
1154
|
+
}
|
1155
|
+
40% {
|
1156
|
+
transform: scaleX(1.02);
|
1157
|
+
}
|
1158
|
+
60% {
|
1159
|
+
transform: scaleX(0.98);
|
1160
|
+
}
|
1161
|
+
80% {
|
1162
|
+
transform: scaleX(1.01);
|
1163
|
+
}
|
1164
|
+
100% {
|
1165
|
+
transform: scaleX(0.98);
|
1166
|
+
}
|
1167
|
+
80% {
|
1168
|
+
transform: scaleX(1.01);
|
1169
|
+
}
|
1170
|
+
100% {
|
1171
|
+
transform: scaleX(1);
|
1172
|
+
}
|
1173
|
+
}
|
1174
|
+
|
1175
|
+
@-webkit-keyframes stretchRight {
|
1176
|
+
0% {
|
1177
|
+
-webkit-transform: scaleX(0.3);
|
1178
|
+
}
|
1179
|
+
40% {
|
1180
|
+
-webkit-transform: scaleX(1.02);
|
1181
|
+
}
|
1182
|
+
60% {
|
1183
|
+
-webkit-transform: scaleX(0.98);
|
1184
|
+
}
|
1185
|
+
80% {
|
1186
|
+
-webkit-transform: scaleX(1.01);
|
1187
|
+
}
|
1188
|
+
100% {
|
1189
|
+
-webkit-transform: scaleX(0.98);
|
1190
|
+
}
|
1191
|
+
80% {
|
1192
|
+
-webkit-transform: scaleX(1.01);
|
1193
|
+
}
|
1194
|
+
100% {
|
1195
|
+
-webkit-transform: scaleX(1);
|
1196
|
+
}
|
1197
|
+
}
|