active_frontend 13.3.0 → 14.0.0
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.
- checksums.yaml +4 -4
- data/.DS_Store +0 -0
- data/.fasterer.yml +19 -0
- data/.reek +27 -0
- data/.rubocop.yml +38 -0
- data/.scss-lint.yml +27 -0
- data/Rakefile +1 -1
- data/active_frontend.gemspec +21 -18
- data/app/.DS_Store +0 -0
- data/app/assets/.DS_Store +0 -0
- data/app/assets/fonts/.DS_Store +0 -0
- data/app/assets/fonts/dripicons/.DS_Store +0 -0
- data/app/assets/fonts/dripicons/dripicons.woff +0 -0
- data/app/assets/fonts/fakt-pro/.DS_Store +0 -0
- data/app/assets/fonts/fakt-pro/fakt-pro-bold.woff +0 -0
- data/app/assets/fonts/fakt-pro/fakt-pro-normal.woff +0 -0
- data/app/assets/fonts/fakt-pro/fakt-pro-semibold.woff +0 -0
- data/app/assets/fonts/fakt-pro/fakt-pro-semilight.woff +0 -0
- data/app/assets/fonts/fakt-soft-pro/.DS_Store +0 -0
- data/app/assets/fonts/fakt-soft-pro/fakt-soft-pro-bold.woff +0 -0
- data/app/assets/fonts/fakt-soft-pro/fakt-soft-pro-normal.woff +0 -0
- data/app/assets/fonts/fakt-soft-pro/fakt-soft-pro-semibold.woff +0 -0
- data/app/assets/fonts/fakt-soft-pro/fakt-soft-pro-semilight.woff +0 -0
- data/app/assets/images/.DS_Store +0 -0
- data/app/assets/images/.keep +0 -0
- data/app/assets/images/placeholders/.DS_Store +0 -0
- data/app/assets/images/placeholders/camera-large.png +0 -0
- data/app/assets/images/placeholders/camera-small.png +0 -0
- data/app/assets/images/placeholders/camera.png +0 -0
- data/app/assets/images/placeholders/document-large.png +0 -0
- data/app/assets/images/placeholders/document-small.png +0 -0
- data/app/assets/images/placeholders/document.png +0 -0
- data/app/assets/images/placeholders/photo-large.png +0 -0
- data/app/assets/images/placeholders/{picture-small.png → photo-small.png} +0 -0
- data/app/assets/images/placeholders/photo.png +0 -0
- data/app/assets/images/placeholders/store-large.png +0 -0
- data/app/assets/images/placeholders/store-small.png +0 -0
- data/app/assets/images/placeholders/store.png +0 -0
- data/app/assets/images/placeholders/user-large.png +0 -0
- data/app/assets/images/placeholders/user-small.png +0 -0
- data/app/assets/images/placeholders/user.png +0 -0
- data/app/helpers/active_frontend_helper.rb +22 -37
- data/lib/.DS_Store +0 -0
- data/lib/active_frontend.rb +3 -4
- data/lib/active_frontend/.DS_Store +0 -0
- data/lib/active_frontend/version.rb +1 -1
- data/lib/generators/active_frontend/install_generator.rb +3 -3
- data/lib/generators/active_frontend/templates/install.js +35 -30
- data/lib/generators/active_frontend/templates/install.scss +55 -58
- data/vendor/.DS_Store +0 -0
- data/vendor/assets/.DS_Store +0 -0
- data/vendor/assets/javascripts/.DS_Store +0 -0
- data/vendor/assets/javascripts/active_frontend.js +35 -30
- data/vendor/assets/javascripts/base/_affix.js +170 -0
- data/vendor/assets/javascripts/base/_alert.js +80 -0
- data/vendor/assets/javascripts/base/_animation.js +106 -0
- data/vendor/assets/javascripts/base/_button.js +123 -0
- data/vendor/assets/javascripts/base/_carousel.js +237 -0
- data/vendor/assets/javascripts/base/_collapse.js +200 -0
- data/vendor/assets/javascripts/base/_colorpicker.js +147 -0
- data/vendor/assets/javascripts/base/_datepicker.js +1411 -0
- data/vendor/assets/javascripts/base/_dropdown.js +154 -0
- data/vendor/assets/javascripts/base/_filepicker.js +235 -0
- data/vendor/assets/javascripts/base/_hoverdown.js +116 -0
- data/vendor/assets/javascripts/base/_layout.js +126 -0
- data/vendor/assets/javascripts/base/_list.js +103 -0
- data/vendor/assets/javascripts/{_modal.js → base/_modal.js} +170 -167
- data/vendor/assets/javascripts/base/_popover.js +101 -0
- data/vendor/assets/javascripts/base/_scrollspy.js +161 -0
- data/vendor/assets/javascripts/base/_switch.js +160 -0
- data/vendor/assets/javascripts/base/_tab.js +139 -0
- data/vendor/assets/javascripts/base/_table.js +224 -0
- data/vendor/assets/javascripts/base/_timeago.js +270 -0
- data/vendor/assets/javascripts/base/_timepicker.js +541 -0
- data/vendor/assets/javascripts/base/_tooltip.js +525 -0
- data/vendor/assets/javascripts/base/_tour.js +268 -0
- data/vendor/assets/javascripts/base/_transition.js +52 -0
- data/vendor/assets/javascripts/base/_typeahead.js +362 -0
- data/vendor/assets/javascripts/extensions/_calendar.js +4709 -0
- data/vendor/assets/javascripts/extensions/_chart.js +9371 -0
- data/vendor/assets/javascripts/extensions/_map.js +2153 -0
- data/vendor/assets/stylesheets/.DS_Store +0 -0
- data/vendor/assets/stylesheets/{_mixin.scss → _utility.scss} +96 -10
- data/vendor/assets/stylesheets/_variable.scss +201 -19
- data/vendor/assets/stylesheets/active_frontend.scss +55 -58
- data/vendor/assets/stylesheets/blocks/_anchor.scss +15 -0
- data/vendor/assets/stylesheets/blocks/_button.scss +278 -0
- data/vendor/assets/stylesheets/blocks/_code.scss +144 -0
- data/vendor/assets/stylesheets/blocks/_common.scss +127 -0
- data/vendor/assets/stylesheets/blocks/_form.scss +508 -0
- data/vendor/assets/stylesheets/blocks/_icon.scss +359 -0
- data/vendor/assets/stylesheets/blocks/_list.scss +76 -0
- data/vendor/assets/stylesheets/blocks/_multimedia.scss +62 -0
- data/vendor/assets/stylesheets/blocks/_reset.scss +179 -0
- data/vendor/assets/stylesheets/blocks/_table.scss +211 -0
- data/vendor/assets/stylesheets/blocks/_typography.scss +204 -0
- data/vendor/assets/stylesheets/components/_ad.scss +78 -0
- data/vendor/assets/stylesheets/components/_affix.scss +14 -0
- data/vendor/assets/stylesheets/components/_alert.scss +50 -0
- data/vendor/assets/stylesheets/components/_animation.scss +1670 -0
- data/vendor/assets/stylesheets/components/_breadcrumb.scss +17 -0
- data/vendor/assets/stylesheets/components/_calendar.scss +213 -0
- data/vendor/assets/stylesheets/components/_card.scss +30 -0
- data/vendor/assets/stylesheets/components/_carousel.scss +135 -0
- data/vendor/assets/stylesheets/components/_chart.scss +10 -0
- data/vendor/assets/stylesheets/components/_collapse.scss +17 -0
- data/vendor/assets/stylesheets/components/_colorpicker.scss +38 -0
- data/vendor/assets/stylesheets/components/_datepicker.scss +80 -0
- data/vendor/assets/stylesheets/components/_dropmenu.scss +151 -0
- data/vendor/assets/stylesheets/components/_footer.scss +11 -0
- data/vendor/assets/stylesheets/components/_grid.scss +144 -0
- data/vendor/assets/stylesheets/components/_header.scss +99 -0
- data/vendor/assets/stylesheets/components/_label_and_badge.scss +57 -0
- data/vendor/assets/stylesheets/components/_layout.scss +63 -0
- data/vendor/assets/stylesheets/components/_map.scss +14 -0
- data/vendor/assets/stylesheets/components/_milestone.scss +49 -0
- data/vendor/assets/stylesheets/components/_missive.scss +40 -0
- data/vendor/assets/stylesheets/components/_modal.scss +126 -0
- data/vendor/assets/stylesheets/components/_nav_and_tab.scss +202 -0
- data/vendor/assets/stylesheets/components/_navbar.scss +66 -0
- data/vendor/assets/stylesheets/components/_pagination.scss +79 -0
- data/vendor/assets/stylesheets/components/_placeholder.scss +23 -0
- data/vendor/assets/stylesheets/components/_popover.scss +167 -0
- data/vendor/assets/stylesheets/components/_progress.scss +62 -0
- data/vendor/assets/stylesheets/components/_sidebar.scss +74 -0
- data/vendor/assets/stylesheets/components/_spinner.scss +83 -0
- data/vendor/assets/stylesheets/components/_switch.scss +150 -0
- data/vendor/assets/stylesheets/components/_timepicker.scss +30 -0
- data/vendor/assets/stylesheets/components/_tooltip.scss +93 -0
- data/vendor/assets/stylesheets/components/_transition.scss +12 -0
- data/vendor/assets/stylesheets/components/_typeahead.scss +18 -0
- metadata +150 -94
- data/app/assets/fonts/gotham/gotham-bold.woff +0 -0
- data/app/assets/fonts/gotham/gotham-book.woff +0 -0
- data/app/assets/fonts/gotham/gotham-light.woff +0 -0
- data/app/assets/fonts/gotham/gotham-medium.woff +0 -0
- data/app/assets/fonts/gotham/gotham-rounded-bold.woff +0 -0
- data/app/assets/fonts/gotham/gotham-rounded-book.woff +0 -0
- data/app/assets/fonts/gotham/gotham-rounded-light.woff +0 -0
- data/app/assets/fonts/gotham/gotham-rounded-medium.woff +0 -0
- data/app/assets/images/placeholders/archive-large.png +0 -0
- data/app/assets/images/placeholders/archive-small.png +0 -0
- data/app/assets/images/placeholders/archive.png +0 -0
- data/app/assets/images/placeholders/picture-large.png +0 -0
- data/app/assets/images/placeholders/picture.png +0 -0
- data/vendor/assets/javascripts/_affix.js +0 -153
- data/vendor/assets/javascripts/_alert.js +0 -85
- data/vendor/assets/javascripts/_animation.js +0 -103
- data/vendor/assets/javascripts/_button.js +0 -107
- data/vendor/assets/javascripts/_carousel.js +0 -228
- data/vendor/assets/javascripts/_chart.js +0 -3742
- data/vendor/assets/javascripts/_collapse.js +0 -202
- data/vendor/assets/javascripts/_color_picker.js +0 -108
- data/vendor/assets/javascripts/_date_picker.js +0 -1650
- data/vendor/assets/javascripts/_dropdown.js +0 -156
- data/vendor/assets/javascripts/_file_input.js +0 -71
- data/vendor/assets/javascripts/_hoverdown.js +0 -109
- data/vendor/assets/javascripts/_inputmask.js +0 -341
- data/vendor/assets/javascripts/_loader.js +0 -361
- data/vendor/assets/javascripts/_map.js +0 -2401
- data/vendor/assets/javascripts/_popover.js +0 -99
- data/vendor/assets/javascripts/_scrollspy.js +0 -163
- data/vendor/assets/javascripts/_slider.js +0 -1572
- data/vendor/assets/javascripts/_sort.js +0 -1432
- data/vendor/assets/javascripts/_swoggle.js +0 -415
- data/vendor/assets/javascripts/_tab.js +0 -146
- data/vendor/assets/javascripts/_tablespy.js +0 -1883
- data/vendor/assets/javascripts/_time_ago.js +0 -206
- data/vendor/assets/javascripts/_time_picker.js +0 -1088
- data/vendor/assets/javascripts/_tooltip.js +0 -504
- data/vendor/assets/javascripts/_transition.js +0 -50
- data/vendor/assets/javascripts/_typeahead.js +0 -366
- data/vendor/assets/stylesheets/_ad.scss +0 -63
- data/vendor/assets/stylesheets/_affix.scss +0 -14
- data/vendor/assets/stylesheets/_alert.scss +0 -114
- data/vendor/assets/stylesheets/_animation.scss +0 -1370
- data/vendor/assets/stylesheets/_breadcrumb.scss +0 -100
- data/vendor/assets/stylesheets/_button.scss +0 -386
- data/vendor/assets/stylesheets/_canvas.scss +0 -182
- data/vendor/assets/stylesheets/_carousel.scss +0 -158
- data/vendor/assets/stylesheets/_chart.scss +0 -15
- data/vendor/assets/stylesheets/_code.scss +0 -150
- data/vendor/assets/stylesheets/_collapse.scss +0 -14
- data/vendor/assets/stylesheets/_color.scss +0 -55
- data/vendor/assets/stylesheets/_colorpicker.scss +0 -63
- data/vendor/assets/stylesheets/_datepicker.scss +0 -122
- data/vendor/assets/stylesheets/_dropdown.scss +0 -248
- data/vendor/assets/stylesheets/_footer.scss +0 -71
- data/vendor/assets/stylesheets/_form.scss +0 -661
- data/vendor/assets/stylesheets/_grid.scss +0 -184
- data/vendor/assets/stylesheets/_header.scss +0 -156
- data/vendor/assets/stylesheets/_icon.scss +0 -362
- data/vendor/assets/stylesheets/_image.scss +0 -33
- data/vendor/assets/stylesheets/_label_and_badge.scss +0 -104
- data/vendor/assets/stylesheets/_link.scss +0 -55
- data/vendor/assets/stylesheets/_list.scss +0 -122
- data/vendor/assets/stylesheets/_loader.scss +0 -71
- data/vendor/assets/stylesheets/_map.scss +0 -44
- data/vendor/assets/stylesheets/_missive.scss +0 -74
- data/vendor/assets/stylesheets/_modal.scss +0 -204
- data/vendor/assets/stylesheets/_nav_and_tab.scss +0 -230
- data/vendor/assets/stylesheets/_navbar.scss +0 -73
- data/vendor/assets/stylesheets/_pagination.scss +0 -79
- data/vendor/assets/stylesheets/_panel.scss +0 -80
- data/vendor/assets/stylesheets/_placeholder.scss +0 -63
- data/vendor/assets/stylesheets/_popover.scss +0 -128
- data/vendor/assets/stylesheets/_progress.scss +0 -86
- data/vendor/assets/stylesheets/_reset.scss +0 -140
- data/vendor/assets/stylesheets/_sidebar.scss +0 -148
- data/vendor/assets/stylesheets/_slider.scss +0 -151
- data/vendor/assets/stylesheets/_spinner.scss +0 -572
- data/vendor/assets/stylesheets/_subheader.scss +0 -112
- data/vendor/assets/stylesheets/_swoggle.scss +0 -120
- data/vendor/assets/stylesheets/_table.scss +0 -210
- data/vendor/assets/stylesheets/_timepicker.scss +0 -77
- data/vendor/assets/stylesheets/_toolbar.scss +0 -130
- data/vendor/assets/stylesheets/_tooltip.scss +0 -105
- data/vendor/assets/stylesheets/_transition.scss +0 -11
- data/vendor/assets/stylesheets/_trunk.scss +0 -147
- data/vendor/assets/stylesheets/_typeahead.scss +0 -18
- data/vendor/assets/stylesheets/_typography.scss +0 -233
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
// Table of Contents
|
|
2
|
+
// ==================================================
|
|
3
|
+
// Ad
|
|
4
|
+
// Sizes
|
|
5
|
+
|
|
6
|
+
// Ad
|
|
7
|
+
// ==================================================
|
|
8
|
+
.ad {
|
|
9
|
+
background: color(light-haze);
|
|
10
|
+
border: 1px solid color(dark-haze);
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
display: block;
|
|
13
|
+
height: 220px;
|
|
14
|
+
width: 220px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
// Sizes
|
|
18
|
+
// ==================================================
|
|
19
|
+
.ad-banner {
|
|
20
|
+
height: 60px;
|
|
21
|
+
width: 468px;
|
|
22
|
+
}
|
|
23
|
+
.ad-half-banner {
|
|
24
|
+
height: 60px;
|
|
25
|
+
width: 234px;
|
|
26
|
+
}
|
|
27
|
+
.ad-mobile-banner {
|
|
28
|
+
height: 50px;
|
|
29
|
+
width: 320px;
|
|
30
|
+
}
|
|
31
|
+
.ad-vertical-banner {
|
|
32
|
+
height: 240px;
|
|
33
|
+
width: 120px;
|
|
34
|
+
}
|
|
35
|
+
.ad-button {
|
|
36
|
+
height: 125px;
|
|
37
|
+
width: 125px;
|
|
38
|
+
}
|
|
39
|
+
.ad-leaderboard {
|
|
40
|
+
height: 90px;
|
|
41
|
+
width: 728px;
|
|
42
|
+
}
|
|
43
|
+
.ad-large-leaderboard {
|
|
44
|
+
height: 90px;
|
|
45
|
+
width: 970px;
|
|
46
|
+
}
|
|
47
|
+
.ad-large-rectangle {
|
|
48
|
+
height: 280px;
|
|
49
|
+
width: 336px;
|
|
50
|
+
}
|
|
51
|
+
.ad-medium-rectangle {
|
|
52
|
+
height: 250px;
|
|
53
|
+
width: 300px;
|
|
54
|
+
}
|
|
55
|
+
.ad-small-rectangle {
|
|
56
|
+
height: 150px;
|
|
57
|
+
width: 180px;
|
|
58
|
+
}
|
|
59
|
+
.ad-skyscrapper {
|
|
60
|
+
height: 600px;
|
|
61
|
+
width: 120px;
|
|
62
|
+
}
|
|
63
|
+
.ad-large-skyscrapper {
|
|
64
|
+
height: 600px;
|
|
65
|
+
width: 300px;
|
|
66
|
+
}
|
|
67
|
+
.ad-wide-skyscrapper {
|
|
68
|
+
height: 600px;
|
|
69
|
+
width: 160px;
|
|
70
|
+
}
|
|
71
|
+
.ad-square {
|
|
72
|
+
height: 250px;
|
|
73
|
+
width: 250px;
|
|
74
|
+
}
|
|
75
|
+
.ad-small-square {
|
|
76
|
+
height: 200px;
|
|
77
|
+
width: 200px;
|
|
78
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Table of Contents
|
|
2
|
+
// ==================================================
|
|
3
|
+
// Affix
|
|
4
|
+
|
|
5
|
+
// Affix
|
|
6
|
+
// ==================================================
|
|
7
|
+
.affix {
|
|
8
|
+
position: fixed;
|
|
9
|
+
z-index: 1030;
|
|
10
|
+
}
|
|
11
|
+
.affix-bottom {
|
|
12
|
+
position: absolute;
|
|
13
|
+
top: auto;
|
|
14
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
// Table of Contents
|
|
2
|
+
// ==================================================
|
|
3
|
+
// Alert
|
|
4
|
+
// Colors
|
|
5
|
+
// Styles
|
|
6
|
+
|
|
7
|
+
// Alert
|
|
8
|
+
// ==================================================
|
|
9
|
+
.alert {
|
|
10
|
+
background: color(light-haze);
|
|
11
|
+
border: 0;
|
|
12
|
+
border-bottom-width: 1px;
|
|
13
|
+
border-style: solid;
|
|
14
|
+
border-color: dark-color(light-haze);
|
|
15
|
+
box-sizing: border-box;
|
|
16
|
+
color: color(black);
|
|
17
|
+
display: block;
|
|
18
|
+
padding: 10px 20px;
|
|
19
|
+
width: 100%;
|
|
20
|
+
|
|
21
|
+
.alert-close { float: right; }
|
|
22
|
+
|
|
23
|
+
&.fixed {
|
|
24
|
+
left: 0;
|
|
25
|
+
position: fixed;
|
|
26
|
+
right: 0;
|
|
27
|
+
top: 0;
|
|
28
|
+
z-index: 1050;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// Colors
|
|
33
|
+
// ==================================================
|
|
34
|
+
@each $name, $color in $colors {
|
|
35
|
+
.alert-color-#{$name} {
|
|
36
|
+
background: color($name);
|
|
37
|
+
border-color: dark-color($name);
|
|
38
|
+
color: text-color-on($name);
|
|
39
|
+
|
|
40
|
+
&.alert-outline {
|
|
41
|
+
border-color: color($name);
|
|
42
|
+
color: color($name);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// Styles
|
|
48
|
+
// ==================================================
|
|
49
|
+
.alert-border { border-width: 1px; }
|
|
50
|
+
.alert-outline { background: color(transparent); }
|
|
@@ -0,0 +1,1670 @@
|
|
|
1
|
+
// Table of Contents
|
|
2
|
+
// ==================================================
|
|
3
|
+
// Keyframes
|
|
4
|
+
// Animation
|
|
5
|
+
// Effects
|
|
6
|
+
// Delays
|
|
7
|
+
// Durations
|
|
8
|
+
|
|
9
|
+
// Keyframes
|
|
10
|
+
// ==================================================
|
|
11
|
+
@-webkit-keyframes animation-bounce {
|
|
12
|
+
0%, 20%, 53%, 80%, 100% {
|
|
13
|
+
@include animation-timing-function(cubic-bezier(0.215,0.610,0.355,1));
|
|
14
|
+
@include transform(translate3d(0,0,0));
|
|
15
|
+
}
|
|
16
|
+
40%, 43% {
|
|
17
|
+
@include animation-timing-function(cubic-bezier(0.755,0.050,0.855,0.060));
|
|
18
|
+
@include transform(translate3d(0,-30px,0));
|
|
19
|
+
}
|
|
20
|
+
73% {
|
|
21
|
+
@include animation-timing-function(cubic-bezier(0.755,0.050,0.855,0.060));
|
|
22
|
+
@include transform(translate3d(0,-15px,0));
|
|
23
|
+
}
|
|
24
|
+
90% { @include transform(translate3d(0,-4px,0)); }
|
|
25
|
+
}
|
|
26
|
+
@keyframes animation-bounce {
|
|
27
|
+
0%, 20%, 53%, 80%, 100% {
|
|
28
|
+
@include animation-timing-function(cubic-bezier(0.215,0.610,0.355,1));
|
|
29
|
+
@include transform(translate3d(0,0,0));
|
|
30
|
+
}
|
|
31
|
+
40%, 43% {
|
|
32
|
+
@include animation-timing-function(cubic-bezier(0.755,0.050,0.855,0.060));
|
|
33
|
+
@include transform(translate3d(0,-30px,0));
|
|
34
|
+
}
|
|
35
|
+
73% {
|
|
36
|
+
@include animation-timing-function(cubic-bezier(0.755,0.050,0.855,0.060));
|
|
37
|
+
@include transform(translate3d(0,-15px,0));
|
|
38
|
+
}
|
|
39
|
+
90% { @include transform(translate3d(0,-4px,0)); }
|
|
40
|
+
}
|
|
41
|
+
@-webkit-keyframes animation-bounce-in {
|
|
42
|
+
0% {
|
|
43
|
+
@include transform(scale(0.3));
|
|
44
|
+
opacity: 0;
|
|
45
|
+
}
|
|
46
|
+
50% {
|
|
47
|
+
@include transform(scale(1.05));
|
|
48
|
+
opacity: 1;
|
|
49
|
+
}
|
|
50
|
+
70% { @include transform(scale(0.9)); }
|
|
51
|
+
100% { @include transform(scale(1)); }
|
|
52
|
+
}
|
|
53
|
+
@keyframes animation-bounce-in {
|
|
54
|
+
0% {
|
|
55
|
+
@include transform(scale(0.3));
|
|
56
|
+
opacity: 0;
|
|
57
|
+
}
|
|
58
|
+
50% {
|
|
59
|
+
@include transform(scale(1.05));
|
|
60
|
+
opacity: 1;
|
|
61
|
+
}
|
|
62
|
+
70% { @include transform(scale(0.9)); }
|
|
63
|
+
100% { @include transform(scale(1)); }
|
|
64
|
+
}
|
|
65
|
+
@-webkit-keyframes animation-bounce-in-down {
|
|
66
|
+
0% {
|
|
67
|
+
@include transform(translateY(-2000px));
|
|
68
|
+
opacity: 0;
|
|
69
|
+
}
|
|
70
|
+
60% {
|
|
71
|
+
@include transform(translateY(30px));
|
|
72
|
+
opacity: 1;
|
|
73
|
+
}
|
|
74
|
+
80% { @include transform(translateY(-10px)); }
|
|
75
|
+
100% { @include transform(none); }
|
|
76
|
+
}
|
|
77
|
+
@keyframes animation-bounce-in-down {
|
|
78
|
+
0% {
|
|
79
|
+
@include transform(translateY(-2000px));
|
|
80
|
+
opacity: 0;
|
|
81
|
+
}
|
|
82
|
+
60% {
|
|
83
|
+
@include transform(translateY(30px));
|
|
84
|
+
opacity: 1;
|
|
85
|
+
}
|
|
86
|
+
80% { @include transform(translateY(-10px)); }
|
|
87
|
+
100% { @include transform(none); }
|
|
88
|
+
}
|
|
89
|
+
@-webkit-keyframes animation-bounce-in-left {
|
|
90
|
+
0% {
|
|
91
|
+
@include transform(translateX(-2000px));
|
|
92
|
+
opacity: 0;
|
|
93
|
+
}
|
|
94
|
+
60% {
|
|
95
|
+
@include transform(translateX(30px));
|
|
96
|
+
opacity: 1;
|
|
97
|
+
}
|
|
98
|
+
80% { @include transform(translateX(-10px)); }
|
|
99
|
+
100% { @include transform(none); }
|
|
100
|
+
}
|
|
101
|
+
@keyframes animation-bounce-in-left {
|
|
102
|
+
0% {
|
|
103
|
+
@include transform(translateX(-2000px));
|
|
104
|
+
opacity: 0;
|
|
105
|
+
}
|
|
106
|
+
60% {
|
|
107
|
+
@include transform(translateX(30px));
|
|
108
|
+
opacity: 1;
|
|
109
|
+
}
|
|
110
|
+
80% { @include transform(translateX(-10px)); }
|
|
111
|
+
100% { @include transform(none); }
|
|
112
|
+
}
|
|
113
|
+
@-webkit-keyframes animation-bounce-in-right {
|
|
114
|
+
0% {
|
|
115
|
+
@include transform(translateX(2000px));
|
|
116
|
+
opacity: 0;
|
|
117
|
+
}
|
|
118
|
+
60% {
|
|
119
|
+
@include transform(translateX(-30px));
|
|
120
|
+
opacity: 1;
|
|
121
|
+
}
|
|
122
|
+
80% { @include transform(translateX(10px)); }
|
|
123
|
+
100% { @include transform(none); }
|
|
124
|
+
}
|
|
125
|
+
@keyframes animation-bounce-in-right {
|
|
126
|
+
0% {
|
|
127
|
+
@include transform(translateX(2000px));
|
|
128
|
+
opacity: 0;
|
|
129
|
+
}
|
|
130
|
+
60% {
|
|
131
|
+
@include transform(translateX(-30px));
|
|
132
|
+
opacity: 1;
|
|
133
|
+
}
|
|
134
|
+
80% { @include transform(translateX(10px)); }
|
|
135
|
+
100% { @include transform(none); }
|
|
136
|
+
}
|
|
137
|
+
@-webkit-keyframes animation-bounce-in-up {
|
|
138
|
+
0% {
|
|
139
|
+
@include transform(translateY(2000px));
|
|
140
|
+
opacity: 0;
|
|
141
|
+
}
|
|
142
|
+
60% {
|
|
143
|
+
@include transform(translateY(-30px));
|
|
144
|
+
opacity: 1;
|
|
145
|
+
}
|
|
146
|
+
80% { @include transform(translateY(10px)); }
|
|
147
|
+
100% { @include transform(none); }
|
|
148
|
+
}
|
|
149
|
+
@keyframes animation-bounce-in-up {
|
|
150
|
+
0% {
|
|
151
|
+
@include transform(translateY(2000px));
|
|
152
|
+
opacity: 0;
|
|
153
|
+
}
|
|
154
|
+
60% {
|
|
155
|
+
@include transform(translateY(-30px));
|
|
156
|
+
opacity: 1;
|
|
157
|
+
}
|
|
158
|
+
80% { @include transform(translateY(10px)); }
|
|
159
|
+
100% { @include transform(none); }
|
|
160
|
+
}
|
|
161
|
+
@-webkit-keyframes animation-bounce-out {
|
|
162
|
+
0% { @include transform(scale(1)); }
|
|
163
|
+
25% { @include transform(scale(0.95)); }
|
|
164
|
+
50% {
|
|
165
|
+
@include transform(scale(1.1));
|
|
166
|
+
opacity: 1;
|
|
167
|
+
}
|
|
168
|
+
100% {
|
|
169
|
+
@include transform(scale(0.3));
|
|
170
|
+
opacity: 0;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
@keyframes animation-bounce-out {
|
|
174
|
+
0% { @include transform(scale(1)); }
|
|
175
|
+
25% { @include transform(scale(0.95)); }
|
|
176
|
+
50% {
|
|
177
|
+
@include transform(scale(1.1));
|
|
178
|
+
opacity: 1;
|
|
179
|
+
}
|
|
180
|
+
100% {
|
|
181
|
+
@include transform(scale(0.3));
|
|
182
|
+
opacity: 0;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
@-webkit-keyframes animation-bounce-out-down {
|
|
186
|
+
0% { @include transform(none); }
|
|
187
|
+
20% {
|
|
188
|
+
@include transform(translateY(-20px));
|
|
189
|
+
opacity: 1;
|
|
190
|
+
}
|
|
191
|
+
100% {
|
|
192
|
+
@include transform(translateY(2000px));
|
|
193
|
+
opacity: 0;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
@keyframes animation-bounce-out-down {
|
|
197
|
+
0% { @include transform(none); }
|
|
198
|
+
20% {
|
|
199
|
+
@include transform(translateY(-20px));
|
|
200
|
+
opacity: 1;
|
|
201
|
+
}
|
|
202
|
+
100% {
|
|
203
|
+
@include transform(translateY(2000px));
|
|
204
|
+
opacity: 0;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
@-webkit-keyframes animation-bounce-out-left {
|
|
208
|
+
0% { @include transform(none); }
|
|
209
|
+
20% {
|
|
210
|
+
@include transform(translateX(20px));
|
|
211
|
+
opacity: 1;
|
|
212
|
+
}
|
|
213
|
+
100% {
|
|
214
|
+
@include transform(translateX(-2000px));
|
|
215
|
+
opacity: 0;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
@keyframes animation-bounce-out-left {
|
|
219
|
+
0% { @include transform(none); }
|
|
220
|
+
20% {
|
|
221
|
+
@include transform(translateX(20px));
|
|
222
|
+
opacity: 1;
|
|
223
|
+
}
|
|
224
|
+
100% {
|
|
225
|
+
@include transform(translateX(-2000px));
|
|
226
|
+
opacity: 0;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
@-webkit-keyframes animation-bounce-out-right {
|
|
230
|
+
0% { @include transform(none); }
|
|
231
|
+
20% {
|
|
232
|
+
@include transform(translateX(-20px));
|
|
233
|
+
opacity: 1;
|
|
234
|
+
}
|
|
235
|
+
100% {
|
|
236
|
+
@include transform(translateX(2000px));
|
|
237
|
+
opacity: 0;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
@keyframes animation-bounce-out-right {
|
|
241
|
+
0% { @include transform(none); }
|
|
242
|
+
20% {
|
|
243
|
+
@include transform(translateX(-20px));
|
|
244
|
+
opacity: 1;
|
|
245
|
+
}
|
|
246
|
+
100% {
|
|
247
|
+
@include transform(translateX(2000px));
|
|
248
|
+
opacity: 0;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
@-webkit-keyframes animation-bounce-out-up {
|
|
252
|
+
0% { @include transform(none); }
|
|
253
|
+
20% {
|
|
254
|
+
@include transform(translateY(20px));
|
|
255
|
+
opacity: 1;
|
|
256
|
+
}
|
|
257
|
+
100% {
|
|
258
|
+
@include transform(translateY(-2000px));
|
|
259
|
+
opacity: 0;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
@keyframes animation-bounce-out-up {
|
|
263
|
+
0% { @include transform(none); }
|
|
264
|
+
20% {
|
|
265
|
+
@include transform(translateY(20px));
|
|
266
|
+
opacity: 1;
|
|
267
|
+
}
|
|
268
|
+
100% {
|
|
269
|
+
@include transform(translateY(-2000px));
|
|
270
|
+
opacity: 0;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
@-webkit-keyframes animation-fade-in {
|
|
274
|
+
0% { opacity: 0; }
|
|
275
|
+
100% { opacity: 1; }
|
|
276
|
+
}
|
|
277
|
+
@keyframes animation-fade-in {
|
|
278
|
+
0% { opacity: 0; }
|
|
279
|
+
100% { opacity: 1; }
|
|
280
|
+
}
|
|
281
|
+
@-webkit-keyframes animation-fade-in-down {
|
|
282
|
+
0% {
|
|
283
|
+
@include transform(translate3d(0,-100%,0));
|
|
284
|
+
opacity: 0;
|
|
285
|
+
}
|
|
286
|
+
100% {
|
|
287
|
+
@include transform(none);
|
|
288
|
+
opacity: 1;
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
@keyframes animation-fade-in-down {
|
|
292
|
+
0% {
|
|
293
|
+
@include transform(translate3d(0,-100%,0));
|
|
294
|
+
opacity: 0;
|
|
295
|
+
}
|
|
296
|
+
100% {
|
|
297
|
+
@include transform(none);
|
|
298
|
+
opacity: 1;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
@-webkit-keyframes animation-fade-in-down-big {
|
|
302
|
+
0% {
|
|
303
|
+
@include transform(translate3d(0,-2000px,0));
|
|
304
|
+
opacity: 0;
|
|
305
|
+
}
|
|
306
|
+
100% {
|
|
307
|
+
@include transform(none);
|
|
308
|
+
opacity: 1;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
@keyframes animation-fade-in-down-big {
|
|
312
|
+
0% {
|
|
313
|
+
@include transform(translate3d(0,-2000px,0));
|
|
314
|
+
opacity: 0;
|
|
315
|
+
}
|
|
316
|
+
100% {
|
|
317
|
+
@include transform(none);
|
|
318
|
+
opacity: 1;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
@-webkit-keyframes animation-fade-in-left {
|
|
322
|
+
0% {
|
|
323
|
+
@include transform(translate3d(-100%,0,0));
|
|
324
|
+
opacity: 0;
|
|
325
|
+
}
|
|
326
|
+
100% {
|
|
327
|
+
@include transform(none);
|
|
328
|
+
opacity: 1;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
@keyframes animation-fade-in-left {
|
|
332
|
+
0% {
|
|
333
|
+
@include transform(translate3d(-100%,0,0));
|
|
334
|
+
opacity: 0;
|
|
335
|
+
}
|
|
336
|
+
100% {
|
|
337
|
+
@include transform(none);
|
|
338
|
+
opacity: 1;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
@-webkit-keyframes animation-fade-in-left-big {
|
|
342
|
+
0% {
|
|
343
|
+
@include transform(translate3d(-2000px,0,0));
|
|
344
|
+
opacity: 0;
|
|
345
|
+
}
|
|
346
|
+
100% {
|
|
347
|
+
@include transform(none);
|
|
348
|
+
opacity: 1;
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
@keyframes animation-fade-in-left-big {
|
|
352
|
+
0% {
|
|
353
|
+
@include transform(translate3d(-2000px,0,0));
|
|
354
|
+
opacity: 0;
|
|
355
|
+
}
|
|
356
|
+
100% {
|
|
357
|
+
@include transform(none);
|
|
358
|
+
opacity: 1;
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
@-webkit-keyframes animation-fade-in-right {
|
|
362
|
+
0% {
|
|
363
|
+
@include transform(translate3d(100%,0,0));
|
|
364
|
+
opacity: 0;
|
|
365
|
+
}
|
|
366
|
+
100% {
|
|
367
|
+
@include transform(none);
|
|
368
|
+
opacity: 1;
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
@keyframes animation-fade-in-right {
|
|
372
|
+
0% {
|
|
373
|
+
@include transform(translate3d(100%,0,0));
|
|
374
|
+
opacity: 0;
|
|
375
|
+
}
|
|
376
|
+
100% {
|
|
377
|
+
@include transform(none);
|
|
378
|
+
opacity: 1;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
@-webkit-keyframes animation-fade-in-right-big {
|
|
382
|
+
0% {
|
|
383
|
+
@include transform(translate3d(2000px,0,0));
|
|
384
|
+
opacity: 0;
|
|
385
|
+
}
|
|
386
|
+
100% {
|
|
387
|
+
@include transform(none);
|
|
388
|
+
opacity: 1;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
@keyframes animation-fade-in-right-big {
|
|
392
|
+
0% {
|
|
393
|
+
@include transform(translate3d(2000px,0,0));
|
|
394
|
+
opacity: 0;
|
|
395
|
+
}
|
|
396
|
+
100% {
|
|
397
|
+
@include transform(none);
|
|
398
|
+
opacity: 1;
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
@-webkit-keyframes animation-fade-in-up {
|
|
402
|
+
0% {
|
|
403
|
+
@include transform(translate3d(0,100%,0));
|
|
404
|
+
opacity: 0;
|
|
405
|
+
}
|
|
406
|
+
100% {
|
|
407
|
+
@include transform(none);
|
|
408
|
+
opacity: 1;
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
@keyframes animation-fade-in-up {
|
|
412
|
+
0% {
|
|
413
|
+
@include transform(translate3d(0,100%,0));
|
|
414
|
+
opacity: 0;
|
|
415
|
+
}
|
|
416
|
+
100% {
|
|
417
|
+
@include transform(none);
|
|
418
|
+
opacity: 1;
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
@-webkit-keyframes animation-fade-in-up-big {
|
|
422
|
+
0% {
|
|
423
|
+
@include transform(translate3d(0,2000px,0));
|
|
424
|
+
opacity: 0;
|
|
425
|
+
}
|
|
426
|
+
100% {
|
|
427
|
+
@include transform(none);
|
|
428
|
+
opacity: 1;
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
@keyframes animation-fade-in-up-big {
|
|
432
|
+
0% {
|
|
433
|
+
@include transform(translate3d(0,2000px,0));
|
|
434
|
+
opacity: 0;
|
|
435
|
+
}
|
|
436
|
+
100% {
|
|
437
|
+
@include transform(none);
|
|
438
|
+
opacity: 1;
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
@-webkit-keyframes animation-fade-out {
|
|
442
|
+
0% { opacity: 1; }
|
|
443
|
+
100% { opacity: 0; }
|
|
444
|
+
}
|
|
445
|
+
@keyframes animation-fade-out {
|
|
446
|
+
0% { opacity: 1; }
|
|
447
|
+
100% { opacity: 0; }
|
|
448
|
+
}
|
|
449
|
+
@-webkit-keyframes animation-fade-out-down {
|
|
450
|
+
0% { opacity: 1; }
|
|
451
|
+
100% {
|
|
452
|
+
@include transform(translate3d(0,100%,0));
|
|
453
|
+
opacity: 0;
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
@keyframes animation-fade-out-down {
|
|
457
|
+
0% { opacity: 1; }
|
|
458
|
+
100% {
|
|
459
|
+
@include transform(translate3d(0,100%,0));
|
|
460
|
+
opacity: 0;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
@-webkit-keyframes animation-fade-out-down-big {
|
|
464
|
+
0% { opacity: 1; }
|
|
465
|
+
100% {
|
|
466
|
+
@include transform(translate3d(0,2000px,0));
|
|
467
|
+
opacity: 0;
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
@keyframes animation-fade-out-down-big {
|
|
471
|
+
0% { opacity: 1; }
|
|
472
|
+
100% {
|
|
473
|
+
@include transform(translate3d(0,2000px,0));
|
|
474
|
+
opacity: 0;
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
@-webkit-keyframes animation-fade-out-left {
|
|
478
|
+
0% { opacity: 1; }
|
|
479
|
+
100% {
|
|
480
|
+
@include transform(translate3d(-100%,0,0));
|
|
481
|
+
opacity: 0;
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
@keyframes animation-fade-out-left {
|
|
485
|
+
0% { opacity: 1; }
|
|
486
|
+
100% {
|
|
487
|
+
@include transform(translate3d(-100%,0,0));
|
|
488
|
+
opacity: 0;
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
@-webkit-keyframes animation-fade-out-left-big {
|
|
492
|
+
0% { opacity: 1; }
|
|
493
|
+
100% {
|
|
494
|
+
@include transform(translate3d(-2000px,0,0));
|
|
495
|
+
opacity: 0;
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
@keyframes animation-fade-out-left-big {
|
|
499
|
+
0% { opacity: 1; }
|
|
500
|
+
100% {
|
|
501
|
+
@include transform(translate3d(-2000px,0,0));
|
|
502
|
+
opacity: 0;
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
@-webkit-keyframes animation-fade-out-right {
|
|
506
|
+
0% { opacity: 1; }
|
|
507
|
+
100% {
|
|
508
|
+
@include transform(translate3d(100%,0,0));
|
|
509
|
+
opacity: 0;
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
@keyframes animation-fade-out-right {
|
|
513
|
+
0% { opacity: 1; }
|
|
514
|
+
100% {
|
|
515
|
+
@include transform(translate3d(100%,0,0));
|
|
516
|
+
opacity: 0;
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
@-webkit-keyframes animation-fade-out-right-big {
|
|
520
|
+
0% { opacity: 1; }
|
|
521
|
+
100% {
|
|
522
|
+
@include transform(translate3d(2000px,0,0));
|
|
523
|
+
opacity: 0;
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
@keyframes animation-fade-out-right-big {
|
|
527
|
+
0% { opacity: 1; }
|
|
528
|
+
100% {
|
|
529
|
+
@include transform(translate3d(2000px,0,0));
|
|
530
|
+
opacity: 0;
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
@-webkit-keyframes animation-fade-out-up {
|
|
534
|
+
0% { opacity: 1; }
|
|
535
|
+
100% {
|
|
536
|
+
@include transform(translate3d(0,-100%,0));
|
|
537
|
+
opacity: 0;
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
@keyframes animation-fade-out-up {
|
|
541
|
+
0% { opacity: 1; }
|
|
542
|
+
100% {
|
|
543
|
+
@include transform(translate3d(0,-100%,0));
|
|
544
|
+
opacity: 0;
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
@-webkit-keyframes animation-fade-out-up-big {
|
|
548
|
+
0% { opacity: 1; }
|
|
549
|
+
100% {
|
|
550
|
+
@include transform(translate3d(0,-2000px,0));
|
|
551
|
+
opacity: 0;
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
@keyframes animation-fade-out-up-big {
|
|
555
|
+
0% { opacity: 1; }
|
|
556
|
+
100% {
|
|
557
|
+
@include transform(translate3d(0,-2000px,0));
|
|
558
|
+
opacity: 0;
|
|
559
|
+
}
|
|
560
|
+
}
|
|
561
|
+
@-webkit-keyframes animation-flash {
|
|
562
|
+
0%, 50%, 100% { opacity: 1; }
|
|
563
|
+
25%, 75% { opacity: 0; }
|
|
564
|
+
}
|
|
565
|
+
@keyframes animation-flash {
|
|
566
|
+
0%, 50%, 100% { opacity: 1; }
|
|
567
|
+
25%, 75% { opacity: 0; }
|
|
568
|
+
}
|
|
569
|
+
@-webkit-keyframes animation-flip {
|
|
570
|
+
0% {
|
|
571
|
+
@include animation-timing-function(ease-out);
|
|
572
|
+
@include transform(perspective(400px) rotate3d(0,1,0,-360deg));
|
|
573
|
+
}
|
|
574
|
+
40% {
|
|
575
|
+
@include animation-timing-function(ease-out);
|
|
576
|
+
@include transform(perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg));
|
|
577
|
+
}
|
|
578
|
+
50% {
|
|
579
|
+
@include animation-timing-function(ease-in);
|
|
580
|
+
@include transform(perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg));
|
|
581
|
+
}
|
|
582
|
+
80% {
|
|
583
|
+
@include animation-timing-function(ease-in);
|
|
584
|
+
@include transform(perspective(400px) scale3d(0.95,0.95,0.95));
|
|
585
|
+
}
|
|
586
|
+
100% {
|
|
587
|
+
@include animation-timing-function(ease-in);
|
|
588
|
+
@include transform(perspective(400px));
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
@keyframes animation-flip {
|
|
592
|
+
0% {
|
|
593
|
+
@include animation-timing-function(ease-out);
|
|
594
|
+
@include transform(perspective(400px) rotate3d(0,1,0,-360deg));
|
|
595
|
+
}
|
|
596
|
+
40% {
|
|
597
|
+
@include animation-timing-function(ease-out);
|
|
598
|
+
@include transform(perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg));
|
|
599
|
+
}
|
|
600
|
+
50% {
|
|
601
|
+
@include animation-timing-function(ease-in);
|
|
602
|
+
@include transform(perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg));
|
|
603
|
+
}
|
|
604
|
+
80% {
|
|
605
|
+
@include animation-timing-function(ease-in);
|
|
606
|
+
@include transform(perspective(400px) scale3d(0.95,0.95,0.95));
|
|
607
|
+
}
|
|
608
|
+
100% {
|
|
609
|
+
@include animation-timing-function(ease-in);
|
|
610
|
+
@include transform(perspective(400px));
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
|
+
@-webkit-keyframes animation-flip-in-x {
|
|
614
|
+
0% {
|
|
615
|
+
@include animation-timing-function(ease-in);
|
|
616
|
+
@include transform(perspective(400px) rotate3d(1,0,0,90deg));
|
|
617
|
+
opacity: 0;
|
|
618
|
+
}
|
|
619
|
+
40% {
|
|
620
|
+
@include animation-timing-function(ease-in);
|
|
621
|
+
@include transform(perspective(400px) rotate3d(1,0,0,-20deg));
|
|
622
|
+
}
|
|
623
|
+
60% {
|
|
624
|
+
@include transform(perspective(400px) rotate3d(1,0,0,10deg));
|
|
625
|
+
opacity: 1;
|
|
626
|
+
}
|
|
627
|
+
80% { @include transform(perspective(400px) rotate3d(1,0,0,-5deg)); }
|
|
628
|
+
100% { @include transform(perspective(400px)); }
|
|
629
|
+
}
|
|
630
|
+
@keyframes animation-flip-in-x {
|
|
631
|
+
0% {
|
|
632
|
+
@include animation-timing-function(ease-in);
|
|
633
|
+
@include transform(perspective(400px) rotate3d(1,0,0,90deg));
|
|
634
|
+
opacity: 0;
|
|
635
|
+
}
|
|
636
|
+
40% {
|
|
637
|
+
@include animation-timing-function(ease-in);
|
|
638
|
+
@include transform(perspective(400px) rotate3d(1,0,0,-20deg));
|
|
639
|
+
}
|
|
640
|
+
60% {
|
|
641
|
+
@include transform(perspective(400px) rotate3d(1,0,0,10deg));
|
|
642
|
+
opacity: 1;
|
|
643
|
+
}
|
|
644
|
+
80% { @include transform(perspective(400px) rotate3d(1,0,0,-5deg)); }
|
|
645
|
+
100% { @include transform(perspective(400px)); }
|
|
646
|
+
}
|
|
647
|
+
@-webkit-keyframes animation-flip-in-y {
|
|
648
|
+
0% {
|
|
649
|
+
@include animation-timing-function(ease-in);
|
|
650
|
+
@include transform(perspective(400px) rotate3d(0,1,0,90deg));
|
|
651
|
+
opacity: 0;
|
|
652
|
+
}
|
|
653
|
+
40% {
|
|
654
|
+
@include animation-timing-function(ease-in);
|
|
655
|
+
@include transform(perspective(400px) rotate3d(0,1,0,-20deg));
|
|
656
|
+
}
|
|
657
|
+
60% {
|
|
658
|
+
@include transform(perspective(400px) rotate3d(0,1,0,10deg));
|
|
659
|
+
opacity: 1;
|
|
660
|
+
}
|
|
661
|
+
80% { @include transform(perspective(400px) rotate3d(0,1,0,-5deg)); }
|
|
662
|
+
100% { @include transform(perspective(400px)); }
|
|
663
|
+
}
|
|
664
|
+
@keyframes animation-flip-in-y {
|
|
665
|
+
0% {
|
|
666
|
+
@include animation-timing-function(ease-in);
|
|
667
|
+
@include transform(perspective(400px) rotate3d(0,1,0,90deg));
|
|
668
|
+
opacity: 0;
|
|
669
|
+
}
|
|
670
|
+
40% {
|
|
671
|
+
@include animation-timing-function(ease-in);
|
|
672
|
+
@include transform(perspective(400px) rotate3d(0,1,0,-20deg));
|
|
673
|
+
}
|
|
674
|
+
60% {
|
|
675
|
+
@include transform(perspective(400px) rotate3d(0,1,0,10deg));
|
|
676
|
+
opacity: 1;
|
|
677
|
+
}
|
|
678
|
+
80% { @include transform(perspective(400px) rotate3d(0,1,0,-5deg)); }
|
|
679
|
+
100% { @include transform(perspective(400px)); }
|
|
680
|
+
}
|
|
681
|
+
@-webkit-keyframes animation-flip-out-x {
|
|
682
|
+
0% {
|
|
683
|
+
@include transform(perspective(400px));
|
|
684
|
+
}
|
|
685
|
+
30% {
|
|
686
|
+
@include transform(perspective(400px) rotate3d(1,0,0,-20deg));
|
|
687
|
+
opacity: 1;
|
|
688
|
+
}
|
|
689
|
+
100% {
|
|
690
|
+
@include transform(perspective(400px) rotate3d(1,0,0,90deg));
|
|
691
|
+
opacity: 0;
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
@keyframes animation-flip-out-x {
|
|
695
|
+
0% {
|
|
696
|
+
@include transform(perspective(400px));
|
|
697
|
+
}
|
|
698
|
+
30% {
|
|
699
|
+
@include transform(perspective(400px) rotate3d(1,0,0,-20deg));
|
|
700
|
+
opacity: 1;
|
|
701
|
+
}
|
|
702
|
+
100% {
|
|
703
|
+
@include transform(perspective(400px) rotate3d(1,0,0,90deg));
|
|
704
|
+
opacity: 0;
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
@-webkit-keyframes animation-flip-out-y {
|
|
708
|
+
0% {
|
|
709
|
+
@include transform(perspective(400px));
|
|
710
|
+
}
|
|
711
|
+
30% {
|
|
712
|
+
@include transform(perspective(400px) rotate3d(0,1,0,-15deg));
|
|
713
|
+
opacity: 1;
|
|
714
|
+
}
|
|
715
|
+
100% {
|
|
716
|
+
@include transform(perspective(400px) rotate3d(0,1,0,90deg));
|
|
717
|
+
opacity: 0;
|
|
718
|
+
}
|
|
719
|
+
}
|
|
720
|
+
@keyframes animation-flip-out-y {
|
|
721
|
+
0% {
|
|
722
|
+
@include transform(perspective(400px));
|
|
723
|
+
}
|
|
724
|
+
30% {
|
|
725
|
+
@include transform(perspective(400px) rotate3d(0,1,0,-15deg));
|
|
726
|
+
opacity: 1;
|
|
727
|
+
}
|
|
728
|
+
100% {
|
|
729
|
+
@include transform(perspective(400px) rotate3d(0,1,0,90deg));
|
|
730
|
+
opacity: 0;
|
|
731
|
+
}
|
|
732
|
+
}
|
|
733
|
+
@-webkit-keyframes animation-hinge {
|
|
734
|
+
0% {
|
|
735
|
+
@include animation-timing-function(ease-in-out);
|
|
736
|
+
@include transform-origin(top left);
|
|
737
|
+
}
|
|
738
|
+
20%, 60% {
|
|
739
|
+
@include transform(rotate3d(0,0,1,80deg));
|
|
740
|
+
@include animation-timing-function(ease-in-out);
|
|
741
|
+
@include transform-origin(top left);
|
|
742
|
+
}
|
|
743
|
+
40%, 80% {
|
|
744
|
+
@include transform(rotate3d(0,0,1,60deg));
|
|
745
|
+
@include animation-timing-function(ease-in-out);
|
|
746
|
+
@include transform-origin(top left);
|
|
747
|
+
opacity: 1;
|
|
748
|
+
}
|
|
749
|
+
100% {
|
|
750
|
+
@include transform(translate3d(0,700px,0));
|
|
751
|
+
opacity: 0;
|
|
752
|
+
}
|
|
753
|
+
}
|
|
754
|
+
@keyframes animation-hinge {
|
|
755
|
+
0% {
|
|
756
|
+
@include animation-timing-function(ease-in-out);
|
|
757
|
+
@include transform-origin(top left);
|
|
758
|
+
}
|
|
759
|
+
20%, 60% {
|
|
760
|
+
@include transform(rotate3d(0,0,1,80deg));
|
|
761
|
+
@include animation-timing-function(ease-in-out);
|
|
762
|
+
@include transform-origin(top left);
|
|
763
|
+
}
|
|
764
|
+
40%, 80% {
|
|
765
|
+
@include transform(rotate3d(0,0,1,60deg));
|
|
766
|
+
@include animation-timing-function(ease-in-out);
|
|
767
|
+
@include transform-origin(top left);
|
|
768
|
+
opacity: 1;
|
|
769
|
+
}
|
|
770
|
+
100% {
|
|
771
|
+
@include transform(translate3d(0,700px,0));
|
|
772
|
+
opacity: 0;
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
@-webkit-keyframes animation-jello {
|
|
776
|
+
0%, 11.1%, 100% { @include transform(none); }
|
|
777
|
+
22.2% { @include transform(skewX(-12.5deg) skewY(-12.5deg)); }
|
|
778
|
+
33.3% { @include transform(skewX(6.25deg) skewY(6.25deg)); }
|
|
779
|
+
44.4% { @include transform(skewX(-3.125deg) skewY(-3.125deg)); }
|
|
780
|
+
55.5% { @include transform(skewX(1.5625deg) skewY(1.5625deg)); }
|
|
781
|
+
66.6% { @include transform(skewX(-0.78125deg) skewY(-0.78125deg)); }
|
|
782
|
+
77.7% { @include transform(skewX(0.390625deg) skewY(0.390625deg)); }
|
|
783
|
+
88.8% { @include transform(skewX(-0.1953125deg) skewY(-0.1953125deg)); }
|
|
784
|
+
}
|
|
785
|
+
@keyframes animation-jello {
|
|
786
|
+
0%, 11.1%, 100% { @include transform(none); }
|
|
787
|
+
22.2% { @include transform(skewX(-12.5deg) skewY(-12.5deg)); }
|
|
788
|
+
33.3% { @include transform(skewX(6.25deg) skewY(6.25deg)); }
|
|
789
|
+
44.4% { @include transform(skewX(-3.125deg) skewY(-3.125deg)); }
|
|
790
|
+
55.5% { @include transform(skewX(1.5625deg) skewY(1.5625deg)); }
|
|
791
|
+
66.6% { @include transform(skewX(-0.78125deg) skewY(-0.78125deg)); }
|
|
792
|
+
77.7% { @include transform(skewX(0.390625deg) skewY(0.390625deg)); }
|
|
793
|
+
88.8% { @include transform(skewX(-0.1953125deg) skewY(-0.1953125deg)); }
|
|
794
|
+
}
|
|
795
|
+
@-webkit-keyframes animation-light-speed-in {
|
|
796
|
+
0% {
|
|
797
|
+
@include transform(translate3d(100%,0,0) skewX(-30deg));
|
|
798
|
+
opacity: 0;
|
|
799
|
+
}
|
|
800
|
+
60% {
|
|
801
|
+
@include transform(skewX(20deg));
|
|
802
|
+
opacity: 1;
|
|
803
|
+
}
|
|
804
|
+
80% {
|
|
805
|
+
@include transform(skewX(-5deg));
|
|
806
|
+
opacity: 1;
|
|
807
|
+
}
|
|
808
|
+
100% {
|
|
809
|
+
@include transform(none);
|
|
810
|
+
opacity: 1;
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
@keyframes animation-light-speed-in {
|
|
814
|
+
0% {
|
|
815
|
+
@include transform(translate3d(100%,0,0) skewX(-30deg));
|
|
816
|
+
opacity: 0;
|
|
817
|
+
}
|
|
818
|
+
60% {
|
|
819
|
+
@include transform(skewX(20deg));
|
|
820
|
+
opacity: 1;
|
|
821
|
+
}
|
|
822
|
+
80% {
|
|
823
|
+
@include transform(skewX(-5deg));
|
|
824
|
+
opacity: 1;
|
|
825
|
+
}
|
|
826
|
+
100% {
|
|
827
|
+
@include transform(none);
|
|
828
|
+
opacity: 1;
|
|
829
|
+
}
|
|
830
|
+
}
|
|
831
|
+
@-webkit-keyframes animation-light-speed-out {
|
|
832
|
+
0% { opacity: 1; }
|
|
833
|
+
100% {
|
|
834
|
+
@include transform(translate3d(100%,0,0) skewX(30deg));
|
|
835
|
+
opacity: 0;
|
|
836
|
+
}
|
|
837
|
+
}
|
|
838
|
+
@keyframes animation-light-speed-out {
|
|
839
|
+
0% { opacity: 1; }
|
|
840
|
+
100% {
|
|
841
|
+
@include transform(translate3d(100%,0,0) skewX(30deg));
|
|
842
|
+
opacity: 0;
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
@-webkit-keyframes animation-pulse {
|
|
846
|
+
0% { @include transform(scale3d(1,1,1)); }
|
|
847
|
+
50% { @include transform(scale3d(1.05,1.05,1.05)); }
|
|
848
|
+
100% { @include transform(scale3d(1,1,1)); }
|
|
849
|
+
}
|
|
850
|
+
@keyframes animation-pulse {
|
|
851
|
+
0% { @include transform(scale3d(1,1,1)); }
|
|
852
|
+
50% { @include transform(scale3d(1.05,1.05,1.05)); }
|
|
853
|
+
100% { @include transform(scale3d(1,1,1)); }
|
|
854
|
+
}
|
|
855
|
+
@-webkit-keyframes animation-roll-in {
|
|
856
|
+
0% {
|
|
857
|
+
opacity: 0;
|
|
858
|
+
@include transform(translate3d(-100%,0,0) rotate3d(0,0,1,-120deg));
|
|
859
|
+
}
|
|
860
|
+
100% {
|
|
861
|
+
opacity: 1;
|
|
862
|
+
@include transform(none);
|
|
863
|
+
}
|
|
864
|
+
}
|
|
865
|
+
@keyframes animation-roll-in {
|
|
866
|
+
0% {
|
|
867
|
+
opacity: 0;
|
|
868
|
+
@include transform(translate3d(-100%,0,0) rotate3d(0,0,1,-120deg));
|
|
869
|
+
}
|
|
870
|
+
100% {
|
|
871
|
+
opacity: 1;
|
|
872
|
+
@include transform(none);
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
@-webkit-keyframes animation-roll-out {
|
|
876
|
+
0% { opacity: 1; }
|
|
877
|
+
100% {
|
|
878
|
+
opacity: 0;
|
|
879
|
+
@include transform(translate3d(100%,0,0) rotate3d(0,0,1,120deg));
|
|
880
|
+
}
|
|
881
|
+
}
|
|
882
|
+
@keyframes animation-roll-out {
|
|
883
|
+
0% { opacity: 1; }
|
|
884
|
+
100% {
|
|
885
|
+
opacity: 0;
|
|
886
|
+
@include transform(translate3d(100%,0,0) rotate3d(0,0,1,120deg));
|
|
887
|
+
}
|
|
888
|
+
}
|
|
889
|
+
@-webkit-keyframes animation-rotate-in {
|
|
890
|
+
0% {
|
|
891
|
+
@include transform(rotate3d(0,0,1,-200deg));
|
|
892
|
+
@include transform-origin(center);
|
|
893
|
+
opacity: 0;
|
|
894
|
+
}
|
|
895
|
+
100% {
|
|
896
|
+
@include transform(none);
|
|
897
|
+
@include transform-origin(center);
|
|
898
|
+
opacity: 1;
|
|
899
|
+
}
|
|
900
|
+
}
|
|
901
|
+
@keyframes animation-rotate-in {
|
|
902
|
+
0% {
|
|
903
|
+
@include transform(rotate3d(0,0,1,-200deg));
|
|
904
|
+
@include transform-origin(center);
|
|
905
|
+
opacity: 0;
|
|
906
|
+
}
|
|
907
|
+
100% {
|
|
908
|
+
@include transform(none);
|
|
909
|
+
@include transform-origin(center);
|
|
910
|
+
opacity: 1;
|
|
911
|
+
}
|
|
912
|
+
}
|
|
913
|
+
@-webkit-keyframes animation-rotate-in-down-left {
|
|
914
|
+
0% {
|
|
915
|
+
@include transform(rotate3d(0,0,1,-45deg));
|
|
916
|
+
@include transform-origin(left bottom);
|
|
917
|
+
opacity: 0;
|
|
918
|
+
}
|
|
919
|
+
100% {
|
|
920
|
+
@include transform(none);
|
|
921
|
+
@include transform-origin(left bottom);
|
|
922
|
+
opacity: 1;
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
@keyframes animation-rotate-in-down-left {
|
|
926
|
+
0% {
|
|
927
|
+
@include transform(rotate3d(0,0,1,-45deg));
|
|
928
|
+
@include transform-origin(left bottom);
|
|
929
|
+
opacity: 0;
|
|
930
|
+
}
|
|
931
|
+
100% {
|
|
932
|
+
@include transform(none);
|
|
933
|
+
@include transform-origin(left bottom);
|
|
934
|
+
opacity: 1;
|
|
935
|
+
}
|
|
936
|
+
}
|
|
937
|
+
@-webkit-keyframes animation-rotate-in-down-right {
|
|
938
|
+
0% {
|
|
939
|
+
@include transform(rotate3d(0,0,1,45deg));
|
|
940
|
+
@include transform-origin(right bottom);
|
|
941
|
+
opacity: 0;
|
|
942
|
+
}
|
|
943
|
+
100% {
|
|
944
|
+
@include transform(none);
|
|
945
|
+
@include transform-origin(right bottom);
|
|
946
|
+
opacity: 1;
|
|
947
|
+
}
|
|
948
|
+
}
|
|
949
|
+
@keyframes animation-rotate-in-down-right {
|
|
950
|
+
0% {
|
|
951
|
+
@include transform(rotate3d(0,0,1,45deg));
|
|
952
|
+
@include transform-origin(right bottom);
|
|
953
|
+
opacity: 0;
|
|
954
|
+
}
|
|
955
|
+
100% {
|
|
956
|
+
@include transform(none);
|
|
957
|
+
@include transform-origin(right bottom);
|
|
958
|
+
opacity: 1;
|
|
959
|
+
}
|
|
960
|
+
}
|
|
961
|
+
@-webkit-keyframes animation-rotate-in-up-left {
|
|
962
|
+
0% {
|
|
963
|
+
@include transform(rotate3d(0,0,1,45deg));
|
|
964
|
+
@include transform-origin(left bottom);
|
|
965
|
+
opacity: 0;
|
|
966
|
+
}
|
|
967
|
+
100% {
|
|
968
|
+
@include transform(none);
|
|
969
|
+
@include transform-origin(left bottom);
|
|
970
|
+
opacity: 1;
|
|
971
|
+
}
|
|
972
|
+
}
|
|
973
|
+
@keyframes animation-rotate-in-up-left {
|
|
974
|
+
0% {
|
|
975
|
+
@include transform(rotate3d(0,0,1,45deg));
|
|
976
|
+
@include transform-origin(left bottom);
|
|
977
|
+
opacity: 0;
|
|
978
|
+
}
|
|
979
|
+
100% {
|
|
980
|
+
@include transform(none);
|
|
981
|
+
@include transform-origin(left bottom);
|
|
982
|
+
opacity: 1;
|
|
983
|
+
}
|
|
984
|
+
}
|
|
985
|
+
@-webkit-keyframes animation-rotate-in-up-right {
|
|
986
|
+
0% {
|
|
987
|
+
@include transform(rotate3d(0,0,1,-90deg));
|
|
988
|
+
@include transform-origin(right bottom);
|
|
989
|
+
opacity: 0;
|
|
990
|
+
}
|
|
991
|
+
100% {
|
|
992
|
+
@include transform(none);
|
|
993
|
+
@include transform-origin(right bottom);
|
|
994
|
+
opacity: 1;
|
|
995
|
+
}
|
|
996
|
+
}
|
|
997
|
+
@keyframes animation-rotate-in-up-right {
|
|
998
|
+
0% {
|
|
999
|
+
@include transform(rotate3d(0,0,1,-90deg));
|
|
1000
|
+
@include transform-origin(right bottom);
|
|
1001
|
+
opacity: 0;
|
|
1002
|
+
}
|
|
1003
|
+
100% {
|
|
1004
|
+
@include transform(none);
|
|
1005
|
+
@include transform-origin(right bottom);
|
|
1006
|
+
opacity: 1;
|
|
1007
|
+
}
|
|
1008
|
+
}
|
|
1009
|
+
@-webkit-keyframes animation-rotate-out {
|
|
1010
|
+
0% {
|
|
1011
|
+
@include transform-origin(center);
|
|
1012
|
+
opacity: 1;
|
|
1013
|
+
}
|
|
1014
|
+
100% {
|
|
1015
|
+
@include transform(rotate3d(0,0,1,200deg));
|
|
1016
|
+
@include transform-origin(center);
|
|
1017
|
+
opacity: 0;
|
|
1018
|
+
}
|
|
1019
|
+
}
|
|
1020
|
+
@keyframes animation-rotate-out {
|
|
1021
|
+
0% {
|
|
1022
|
+
@include transform-origin(center);
|
|
1023
|
+
opacity: 1;
|
|
1024
|
+
}
|
|
1025
|
+
100% {
|
|
1026
|
+
@include transform(rotate3d(0,0,1,200deg));
|
|
1027
|
+
@include transform-origin(center);
|
|
1028
|
+
opacity: 0;
|
|
1029
|
+
}
|
|
1030
|
+
}
|
|
1031
|
+
@-webkit-keyframes animation-rotate-out-down-left {
|
|
1032
|
+
0% {
|
|
1033
|
+
@include transform-origin(left bottom);
|
|
1034
|
+
opacity: 1;
|
|
1035
|
+
}
|
|
1036
|
+
100% {
|
|
1037
|
+
@include transform(rotate3d(0,0,1,45deg));
|
|
1038
|
+
@include transform-origin(left bottom);
|
|
1039
|
+
opacity: 0;
|
|
1040
|
+
}
|
|
1041
|
+
}
|
|
1042
|
+
@keyframes animation-rotate-out-down-left {
|
|
1043
|
+
0% {
|
|
1044
|
+
@include transform-origin(left bottom);
|
|
1045
|
+
opacity: 1;
|
|
1046
|
+
}
|
|
1047
|
+
100% {
|
|
1048
|
+
@include transform(rotate3d(0,0,1,45deg));
|
|
1049
|
+
@include transform-origin(left bottom);
|
|
1050
|
+
opacity: 0;
|
|
1051
|
+
}
|
|
1052
|
+
}
|
|
1053
|
+
@-webkit-keyframes animation-rotate-out-down-right {
|
|
1054
|
+
0% {
|
|
1055
|
+
@include transform-origin(right bottom);
|
|
1056
|
+
opacity: 1;
|
|
1057
|
+
}
|
|
1058
|
+
100% {
|
|
1059
|
+
@include transform(rotate3d(0,0,1,-45deg));
|
|
1060
|
+
@include transform-origin(right bottom);
|
|
1061
|
+
opacity: 0;
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
@keyframes animation-rotate-out-down-right {
|
|
1065
|
+
0% {
|
|
1066
|
+
@include transform-origin(right bottom);
|
|
1067
|
+
opacity: 1;
|
|
1068
|
+
}
|
|
1069
|
+
100% {
|
|
1070
|
+
@include transform(rotate3d(0,0,1,-45deg));
|
|
1071
|
+
@include transform-origin(right bottom);
|
|
1072
|
+
opacity: 0;
|
|
1073
|
+
}
|
|
1074
|
+
}
|
|
1075
|
+
@-webkit-keyframes animation-rotate-out-up-left {
|
|
1076
|
+
0% {
|
|
1077
|
+
@include transform-origin(left bottom);
|
|
1078
|
+
opacity: 1;
|
|
1079
|
+
}
|
|
1080
|
+
100% {
|
|
1081
|
+
@include transform(rotate3d(0,0,1,-45deg));
|
|
1082
|
+
@include transform-origin(left bottom);
|
|
1083
|
+
opacity: 0;
|
|
1084
|
+
}
|
|
1085
|
+
}
|
|
1086
|
+
@keyframes animation-rotate-out-up-left {
|
|
1087
|
+
0% {
|
|
1088
|
+
@include transform-origin(left bottom);
|
|
1089
|
+
opacity: 1;
|
|
1090
|
+
}
|
|
1091
|
+
100% {
|
|
1092
|
+
@include transform(rotate3d(0,0,1,-45deg));
|
|
1093
|
+
@include transform-origin(left bottom);
|
|
1094
|
+
opacity: 0;
|
|
1095
|
+
}
|
|
1096
|
+
}
|
|
1097
|
+
@-webkit-keyframes animation-rotate-out-up-right {
|
|
1098
|
+
0% {
|
|
1099
|
+
@include transform-origin(right bottom);
|
|
1100
|
+
opacity: 1;
|
|
1101
|
+
}
|
|
1102
|
+
100% {
|
|
1103
|
+
@include transform(rotate3d(0,0,1,90deg));
|
|
1104
|
+
@include transform-origin(right bottom);
|
|
1105
|
+
opacity: 0;
|
|
1106
|
+
}
|
|
1107
|
+
}
|
|
1108
|
+
@keyframes animation-rotate-out-up-right {
|
|
1109
|
+
0% {
|
|
1110
|
+
@include transform-origin(right bottom);
|
|
1111
|
+
opacity: 1;
|
|
1112
|
+
}
|
|
1113
|
+
100% {
|
|
1114
|
+
@include transform(rotate3d(0,0,1,90deg));
|
|
1115
|
+
@include transform-origin(right bottom);
|
|
1116
|
+
opacity: 0;
|
|
1117
|
+
}
|
|
1118
|
+
}
|
|
1119
|
+
@-webkit-keyframes animation-rubber-band {
|
|
1120
|
+
0% { @include transform(scale3d(1,1,1)); }
|
|
1121
|
+
30% { @include transform(scale3d(1.25,0.75,1)); }
|
|
1122
|
+
40% { @include transform(scale3d(0.75,1.25,1)); }
|
|
1123
|
+
50% { @include transform(scale3d(1.15,0.85,1)); }
|
|
1124
|
+
65% { @include transform(scale3d(0.95,1.05,1)); }
|
|
1125
|
+
75% { @include transform(scale3d(1.05,0.95,1)); }
|
|
1126
|
+
100% { @include transform(scale3d(1,1,1)); }
|
|
1127
|
+
}
|
|
1128
|
+
@keyframes animation-rubber-band {
|
|
1129
|
+
0% { @include transform(scale3d(1,1,1)); }
|
|
1130
|
+
30% { @include transform(scale3d(1.25,0.75,1)); }
|
|
1131
|
+
40% { @include transform(scale3d(0.75,1.25,1)); }
|
|
1132
|
+
50% { @include transform(scale3d(1.15,0.85,1)); }
|
|
1133
|
+
65% { @include transform(scale3d(0.95,1.05,1)); }
|
|
1134
|
+
75% { @include transform(scale3d(1.05,0.95,1)); }
|
|
1135
|
+
100% { @include transform(scale3d(1,1,1)); }
|
|
1136
|
+
}
|
|
1137
|
+
@-webkit-keyframes animation-shake {
|
|
1138
|
+
0%, 100% { @include transform(translate3d(0,0,0)); }
|
|
1139
|
+
10%, 30%, 50%, 70%, 90% { @include transform(translate3d(-10px,0,0)); }
|
|
1140
|
+
20%, 40%, 60%, 80% { @include transform(translate3d(10px,0,0)); }
|
|
1141
|
+
}
|
|
1142
|
+
@keyframes animation-shake {
|
|
1143
|
+
0%, 100% { @include transform(translate3d(0,0,0)); }
|
|
1144
|
+
10%, 30%, 50%, 70%, 90% { @include transform(translate3d(-10px,0,0)); }
|
|
1145
|
+
20%, 40%, 60%, 80% { @include transform(translate3d(10px,0,0)); }
|
|
1146
|
+
}
|
|
1147
|
+
@-webkit-keyframes animation-slide-in-down {
|
|
1148
|
+
0% {
|
|
1149
|
+
@include transform(translate3d(0,-100%,0));
|
|
1150
|
+
visibility: visible;
|
|
1151
|
+
}
|
|
1152
|
+
100% { @include transform(translate3d(0,0,0)); }
|
|
1153
|
+
}
|
|
1154
|
+
@keyframes animation-slide-in-down {
|
|
1155
|
+
0% {
|
|
1156
|
+
@include transform(translate3d(0,-100%,0));
|
|
1157
|
+
visibility: visible;
|
|
1158
|
+
}
|
|
1159
|
+
100% { @include transform(translate3d(0,0,0)); }
|
|
1160
|
+
}
|
|
1161
|
+
@-webkit-keyframes animation-slide-in-left {
|
|
1162
|
+
0% {
|
|
1163
|
+
@include transform(translate3d(-100%,0,0));
|
|
1164
|
+
visibility: visible;
|
|
1165
|
+
}
|
|
1166
|
+
100% { @include transform(translate3d(0,0,0)); }
|
|
1167
|
+
}
|
|
1168
|
+
@keyframes animation-slide-in-left {
|
|
1169
|
+
0% {
|
|
1170
|
+
@include transform(translate3d(-100%,0,0));
|
|
1171
|
+
visibility: visible;
|
|
1172
|
+
}
|
|
1173
|
+
100% { @include transform(translate3d(0,0,0)); }
|
|
1174
|
+
}
|
|
1175
|
+
@-webkit-keyframes animation-slide-in-right {
|
|
1176
|
+
0% {
|
|
1177
|
+
@include transform(translate3d(100%,0,0));
|
|
1178
|
+
visibility: visible;
|
|
1179
|
+
}
|
|
1180
|
+
100% { @include transform(translate3d(0,0,0)); }
|
|
1181
|
+
}
|
|
1182
|
+
@keyframes animation-slide-in-right {
|
|
1183
|
+
0% {
|
|
1184
|
+
@include transform(translate3d(100%,0,0));
|
|
1185
|
+
visibility: visible;
|
|
1186
|
+
}
|
|
1187
|
+
100% { @include transform(translate3d(0,0,0)); }
|
|
1188
|
+
}
|
|
1189
|
+
@-webkit-keyframes animation-slide-in-up {
|
|
1190
|
+
0% {
|
|
1191
|
+
@include transform(translate3d(0,100%,0));
|
|
1192
|
+
visibility: visible;
|
|
1193
|
+
}
|
|
1194
|
+
100% { @include transform(translate3d(0,0,0)); }
|
|
1195
|
+
}
|
|
1196
|
+
@keyframes animation-slide-in-up {
|
|
1197
|
+
0% {
|
|
1198
|
+
@include transform(translate3d(0,100%,0));
|
|
1199
|
+
visibility: visible;
|
|
1200
|
+
}
|
|
1201
|
+
100% { @include transform(translate3d(0,0,0)); }
|
|
1202
|
+
}
|
|
1203
|
+
@-webkit-keyframes animation-slide-out-down {
|
|
1204
|
+
0% { @include transform(translate3d(0,0,0)); }
|
|
1205
|
+
100% {
|
|
1206
|
+
@include transform(translate3d(0,100%,0));
|
|
1207
|
+
visibility: hidden;
|
|
1208
|
+
}
|
|
1209
|
+
}
|
|
1210
|
+
@keyframes animation-slide-out-down {
|
|
1211
|
+
0% { @include transform(translate3d(0,0,0)); }
|
|
1212
|
+
100% {
|
|
1213
|
+
@include transform(translate3d(0,100%,0));
|
|
1214
|
+
visibility: hidden;
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
@-webkit-keyframes animation-slide-out-left {
|
|
1218
|
+
0% { @include transform(translate3d(0,0,0)); }
|
|
1219
|
+
100% {
|
|
1220
|
+
@include transform(translate3d(-100%, 0,0));
|
|
1221
|
+
visibility: hidden;
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
1224
|
+
@keyframes animation-slide-out-left {
|
|
1225
|
+
0% { @include transform(translate3d(0,0,0)); }
|
|
1226
|
+
100% {
|
|
1227
|
+
@include transform(translate3d(-100%, 0,0));
|
|
1228
|
+
visibility: hidden;
|
|
1229
|
+
}
|
|
1230
|
+
}
|
|
1231
|
+
@-webkit-keyframes animation-slide-out-right {
|
|
1232
|
+
0% { @include transform(translate3d(0,0,0)); }
|
|
1233
|
+
100% {
|
|
1234
|
+
@include transform(translate3d(100%, 0,0));
|
|
1235
|
+
visibility: hidden;
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1238
|
+
@keyframes animation-slide-out-right {
|
|
1239
|
+
0% { @include transform(translate3d(0,0,0)); }
|
|
1240
|
+
100% {
|
|
1241
|
+
@include transform(translate3d(100%, 0,0));
|
|
1242
|
+
visibility: hidden;
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
@-webkit-keyframes animation-slide-out-up {
|
|
1246
|
+
0% { @include transform(translate3d(0,0,0)); }
|
|
1247
|
+
100% {
|
|
1248
|
+
@include transform(translate3d(0,-100%,0));
|
|
1249
|
+
visibility: hidden;
|
|
1250
|
+
}
|
|
1251
|
+
}
|
|
1252
|
+
@keyframes animation-slide-out-up {
|
|
1253
|
+
0% { @include transform(translate3d(0,0,0)); }
|
|
1254
|
+
100% {
|
|
1255
|
+
@include transform(translate3d(0,-100%,0));
|
|
1256
|
+
visibility: hidden;
|
|
1257
|
+
}
|
|
1258
|
+
}
|
|
1259
|
+
@-webkit-keyframes animation-spin {
|
|
1260
|
+
0% { @include transform(rotate(0)); }
|
|
1261
|
+
100% { @include transform(rotate(359deg)); }
|
|
1262
|
+
}
|
|
1263
|
+
@keyframes animation-spin {
|
|
1264
|
+
0% { @include transform(rotate(0)); }
|
|
1265
|
+
100% { @include transform(rotate(359deg)); }
|
|
1266
|
+
}
|
|
1267
|
+
@-webkit-keyframes animation-swing {
|
|
1268
|
+
20% { @include transform(rotate3d(0,0,1,15deg)); }
|
|
1269
|
+
40% { @include transform(rotate3d(0,0,1,-10deg)); }
|
|
1270
|
+
60% { @include transform(rotate3d(0,0,1,5deg)); }
|
|
1271
|
+
80% { @include transform(rotate3d(0,0,1,-5deg)); }
|
|
1272
|
+
100% { @include transform(rotate3d(0,0,1,0deg)); }
|
|
1273
|
+
}
|
|
1274
|
+
@keyframes animation-swing {
|
|
1275
|
+
20% { @include transform(rotate3d(0,0,1,15deg)); }
|
|
1276
|
+
40% { @include transform(rotate3d(0,0,1,-10deg)); }
|
|
1277
|
+
60% { @include transform(rotate3d(0,0,1,5deg)); }
|
|
1278
|
+
80% { @include transform(rotate3d(0,0,1,-5deg)); }
|
|
1279
|
+
100% { @include transform(rotate3d(0,0,1,0deg)); }
|
|
1280
|
+
}
|
|
1281
|
+
@-webkit-keyframes animation-tada {
|
|
1282
|
+
0% { @include transform(scale3d(1,1,1)); }
|
|
1283
|
+
10%, 20% { @include transform(scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg)); }
|
|
1284
|
+
30%, 50%, 70%, 90% { @include transform(scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)); }
|
|
1285
|
+
40%, 60%, 80% { @include transform(scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)); }
|
|
1286
|
+
100% { @include transform(scale3d(1,1,1)); }
|
|
1287
|
+
}
|
|
1288
|
+
@keyframes animation-tada {
|
|
1289
|
+
0% { @include transform(scale3d(1,1,1)); }
|
|
1290
|
+
10%, 20% { @include transform(scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg)); }
|
|
1291
|
+
30%, 50%, 70%, 90% { @include transform(scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)); }
|
|
1292
|
+
40%, 60%, 80% { @include transform(scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)); }
|
|
1293
|
+
100% { @include transform(scale3d(1,1,1)); }
|
|
1294
|
+
}
|
|
1295
|
+
@-webkit-keyframes animation-wobble {
|
|
1296
|
+
0% { @include transform(none); }
|
|
1297
|
+
15% { @include transform(translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)); }
|
|
1298
|
+
30% { @include transform(translate3d(20%,0,0) rotate3d(0,0,1,3deg)); }
|
|
1299
|
+
45% { @include transform(translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)); }
|
|
1300
|
+
60% { @include transform(translate3d(10%,0,0) rotate3d(0,0,1,2deg)); }
|
|
1301
|
+
75% { @include transform(translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)); }
|
|
1302
|
+
100% { @include transform(none); }
|
|
1303
|
+
}
|
|
1304
|
+
@keyframes animation-wobble {
|
|
1305
|
+
0% { @include transform(none); }
|
|
1306
|
+
15% { @include transform(translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)); }
|
|
1307
|
+
30% { @include transform(translate3d(20%,0,0) rotate3d(0,0,1,3deg)); }
|
|
1308
|
+
45% { @include transform(translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)); }
|
|
1309
|
+
60% { @include transform(translate3d(10%,0,0) rotate3d(0,0,1,2deg)); }
|
|
1310
|
+
75% { @include transform(translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)); }
|
|
1311
|
+
100% { @include transform(none); }
|
|
1312
|
+
}
|
|
1313
|
+
@-webkit-keyframes animation-zoom-in {
|
|
1314
|
+
0% {
|
|
1315
|
+
@include transform(scale3d(0.3,0.3,0.3));
|
|
1316
|
+
opacity: 0;
|
|
1317
|
+
}
|
|
1318
|
+
50% { opacity: 1; }
|
|
1319
|
+
}
|
|
1320
|
+
@keyframes animation-slide-zoom-in {
|
|
1321
|
+
0% {
|
|
1322
|
+
@include transform(scale3d(0.3,0.3,0.3));
|
|
1323
|
+
opacity: 0;
|
|
1324
|
+
}
|
|
1325
|
+
50% { opacity: 1; }
|
|
1326
|
+
}
|
|
1327
|
+
@-webkit-keyframes animation-zoom-in-down {
|
|
1328
|
+
0% {
|
|
1329
|
+
@include animation-timing-function(cubic-bezier(0.550,0.055,0.675,0.190));
|
|
1330
|
+
@include transform(scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0));
|
|
1331
|
+
opacity: 0;
|
|
1332
|
+
}
|
|
1333
|
+
60% {
|
|
1334
|
+
@include animation-timing-function(cubic-bezier(0.175,0.885,0.320,1));
|
|
1335
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(0,60px,0));
|
|
1336
|
+
opacity: 1;
|
|
1337
|
+
}
|
|
1338
|
+
}
|
|
1339
|
+
@keyframes animation-slide-zoom-in-down {
|
|
1340
|
+
0% {
|
|
1341
|
+
@include animation-timing-function(cubic-bezier(0.550,0.055,0.675,0.190));
|
|
1342
|
+
@include transform(scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0));
|
|
1343
|
+
opacity: 0;
|
|
1344
|
+
}
|
|
1345
|
+
60% {
|
|
1346
|
+
@include animation-timing-function(cubic-bezier(0.175,0.885,0.320,1));
|
|
1347
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(0,60px,0));
|
|
1348
|
+
opacity: 1;
|
|
1349
|
+
}
|
|
1350
|
+
}
|
|
1351
|
+
@-webkit-keyframes animation-zoom-in-left {
|
|
1352
|
+
0% {
|
|
1353
|
+
@include animation-timing-function(cubic-bezier(0.550,0.055,0.675,0.190));
|
|
1354
|
+
@include transform(scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0));
|
|
1355
|
+
opacity: 0;
|
|
1356
|
+
}
|
|
1357
|
+
60% {
|
|
1358
|
+
@include animation-timing-function(cubic-bezier(0.175,0.885,0.320,1));
|
|
1359
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(10px,0,0));
|
|
1360
|
+
opacity: 1;
|
|
1361
|
+
}
|
|
1362
|
+
}
|
|
1363
|
+
@keyframes animation-slide-zoom-in-left {
|
|
1364
|
+
0% {
|
|
1365
|
+
@include animation-timing-function(cubic-bezier(0.550,0.055,0.675,0.190));
|
|
1366
|
+
@include transform(scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0));
|
|
1367
|
+
opacity: 0;
|
|
1368
|
+
}
|
|
1369
|
+
60% {
|
|
1370
|
+
@include animation-timing-function(cubic-bezier(0.175,0.885,0.320,1));
|
|
1371
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(10px,0,0));
|
|
1372
|
+
opacity: 1;
|
|
1373
|
+
}
|
|
1374
|
+
}
|
|
1375
|
+
@-webkit-keyframes animation-zoom-in-right {
|
|
1376
|
+
0% {
|
|
1377
|
+
@include animation-timing-function(cubic-bezier(0.550,0.055,0.675,0.190));
|
|
1378
|
+
@include transform(scale3d(0.1,0.1,0.1) translate3d(1000px,0,0));
|
|
1379
|
+
opacity: 0;
|
|
1380
|
+
}
|
|
1381
|
+
60% {
|
|
1382
|
+
@include animation-timing-function(cubic-bezier(0.175,0.885,0.320,1));
|
|
1383
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(-10px,0,0));
|
|
1384
|
+
opacity: 1;
|
|
1385
|
+
}
|
|
1386
|
+
}
|
|
1387
|
+
@keyframes animation-slide-zoom-in-right {
|
|
1388
|
+
0% {
|
|
1389
|
+
@include animation-timing-function(cubic-bezier(0.550,0.055,0.675,0.190));
|
|
1390
|
+
@include transform(scale3d(0.1,0.1,0.1) translate3d(1000px,0,0));
|
|
1391
|
+
opacity: 0;
|
|
1392
|
+
}
|
|
1393
|
+
60% {
|
|
1394
|
+
@include animation-timing-function(cubic-bezier(0.175,0.885,0.320,1));
|
|
1395
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(-10px,0,0));
|
|
1396
|
+
opacity: 1;
|
|
1397
|
+
}
|
|
1398
|
+
}
|
|
1399
|
+
@-webkit-keyframes animation-zoom-in-up {
|
|
1400
|
+
0% {
|
|
1401
|
+
@include animation-timing-function(cubic-bezier(0.550,0.055,0.675,0.190));
|
|
1402
|
+
@include transform(scale3d(0.1,0.1,0.1) translate3d(0,1000px,0));
|
|
1403
|
+
opacity: 0;
|
|
1404
|
+
}
|
|
1405
|
+
60% {
|
|
1406
|
+
@include animation-timing-function(cubic-bezier(0.175,0.885,0.320,1));
|
|
1407
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(0,-60px,0));
|
|
1408
|
+
opacity: 1;
|
|
1409
|
+
}
|
|
1410
|
+
}
|
|
1411
|
+
@keyframes animation-slide-zoom-in-up {
|
|
1412
|
+
0% {
|
|
1413
|
+
@include animation-timing-function(cubic-bezier(0.550,0.055,0.675,0.190));
|
|
1414
|
+
@include transform(scale3d(0.1,0.1,0.1) translate3d(0,1000px,0));
|
|
1415
|
+
opacity: 0;
|
|
1416
|
+
}
|
|
1417
|
+
60% {
|
|
1418
|
+
@include animation-timing-function(cubic-bezier(0.175,0.885,0.320,1));
|
|
1419
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(0,-60px,0));
|
|
1420
|
+
opacity: 1;
|
|
1421
|
+
}
|
|
1422
|
+
}
|
|
1423
|
+
@-webkit-keyframes animation-zoom-out {
|
|
1424
|
+
0% { opacity: 1; }
|
|
1425
|
+
50% {
|
|
1426
|
+
@include transform(scale3d(0.3,0.3,0.3));
|
|
1427
|
+
opacity: 0;
|
|
1428
|
+
}
|
|
1429
|
+
100% { opacity: 0; }
|
|
1430
|
+
}
|
|
1431
|
+
@keyframes animation-slide-zoom-out {
|
|
1432
|
+
0% { opacity: 1; }
|
|
1433
|
+
50% {
|
|
1434
|
+
@include transform(scale3d(0.3,0.3,0.3));
|
|
1435
|
+
opacity: 0;
|
|
1436
|
+
}
|
|
1437
|
+
100% { opacity: 0; }
|
|
1438
|
+
}
|
|
1439
|
+
@-webkit-keyframes animation-zoom-out-down {
|
|
1440
|
+
40% {
|
|
1441
|
+
@include animation-timing-function(cubic-bezier(0.550,0.055,0.675,0.190));
|
|
1442
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(0,-60px,0));
|
|
1443
|
+
opacity: 1;
|
|
1444
|
+
}
|
|
1445
|
+
100% {
|
|
1446
|
+
@include animation-timing-function(cubic-bezier(0.175,0.885,0.320,1));
|
|
1447
|
+
@include transform(scale3d(0.1,0.1,0.1) translate3d(0,2000px,0));
|
|
1448
|
+
@include transform-origin(center bottom);
|
|
1449
|
+
opacity: 0;
|
|
1450
|
+
}
|
|
1451
|
+
}
|
|
1452
|
+
@keyframes animation-slide-zoom-out-down {
|
|
1453
|
+
40% {
|
|
1454
|
+
@include animation-timing-function(cubic-bezier(0.550,0.055,0.675,0.190));
|
|
1455
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(0,-60px,0));
|
|
1456
|
+
opacity: 1;
|
|
1457
|
+
}
|
|
1458
|
+
100% {
|
|
1459
|
+
@include animation-timing-function(cubic-bezier(0.175,0.885,0.320,1));
|
|
1460
|
+
@include transform(scale3d(0.1,0.1,0.1) translate3d(0,2000px,0));
|
|
1461
|
+
@include transform-origin(center bottom);
|
|
1462
|
+
opacity: 0;
|
|
1463
|
+
}
|
|
1464
|
+
}
|
|
1465
|
+
@-webkit-keyframes animation-zoom-out-left {
|
|
1466
|
+
40% {
|
|
1467
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(42px,0,0));
|
|
1468
|
+
opacity: 1;
|
|
1469
|
+
}
|
|
1470
|
+
100% {
|
|
1471
|
+
@include transform(scale(0.1) translate3d(-2000px,0,0));
|
|
1472
|
+
@include transform-origin(left center);
|
|
1473
|
+
opacity: 0;
|
|
1474
|
+
}
|
|
1475
|
+
}
|
|
1476
|
+
@keyframes animation-slide-zoom-out-left {
|
|
1477
|
+
40% {
|
|
1478
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(42px,0,0));
|
|
1479
|
+
opacity: 1;
|
|
1480
|
+
}
|
|
1481
|
+
100% {
|
|
1482
|
+
@include transform(scale(0.1) translate3d(-2000px,0,0));
|
|
1483
|
+
@include transform-origin(left center);
|
|
1484
|
+
opacity: 0;
|
|
1485
|
+
}
|
|
1486
|
+
}
|
|
1487
|
+
@-webkit-keyframes animation-zoom-out-right {
|
|
1488
|
+
40% {
|
|
1489
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(-42px,0,0));
|
|
1490
|
+
opacity: 1;
|
|
1491
|
+
}
|
|
1492
|
+
100% {
|
|
1493
|
+
@include transform(scale(0.1) translate3d(2000px,0,0));
|
|
1494
|
+
@include transform-origin(right center);
|
|
1495
|
+
opacity: 0;
|
|
1496
|
+
}
|
|
1497
|
+
}
|
|
1498
|
+
@keyframes animation-slide-zoom-out-right {
|
|
1499
|
+
40% {
|
|
1500
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(-42px,0,0));
|
|
1501
|
+
opacity: 1;
|
|
1502
|
+
}
|
|
1503
|
+
100% {
|
|
1504
|
+
@include transform(scale(0.1) translate3d(2000px,0,0));
|
|
1505
|
+
@include transform-origin(right center);
|
|
1506
|
+
opacity: 0;
|
|
1507
|
+
}
|
|
1508
|
+
}
|
|
1509
|
+
@-webkit-keyframes animation-zoom-out-up {
|
|
1510
|
+
40% {
|
|
1511
|
+
@include animation-timing-function(cubic-bezier(0.550,0.055,0.675,0.190));
|
|
1512
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(0,60px,0));
|
|
1513
|
+
opacity: 1;
|
|
1514
|
+
}
|
|
1515
|
+
100% {
|
|
1516
|
+
@include animation-timing-function(cubic-bezier(0.175,0.885,0.320,1));
|
|
1517
|
+
@include transform(scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0));
|
|
1518
|
+
@include transform-origin(center bottom);
|
|
1519
|
+
opacity: 0;
|
|
1520
|
+
}
|
|
1521
|
+
}
|
|
1522
|
+
@keyframes animation-slide-zoom-out-up {
|
|
1523
|
+
40% {
|
|
1524
|
+
@include animation-timing-function(cubic-bezier(0.550,0.055,0.675,0.190));
|
|
1525
|
+
@include transform(scale3d(0.475,0.475,0.475) translate3d(0,60px,0));
|
|
1526
|
+
opacity: 1;
|
|
1527
|
+
}
|
|
1528
|
+
100% {
|
|
1529
|
+
@include animation-timing-function(cubic-bezier(0.175,0.885,0.320,1));
|
|
1530
|
+
@include transform(scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0));
|
|
1531
|
+
@include transform-origin(center bottom);
|
|
1532
|
+
opacity: 0;
|
|
1533
|
+
}
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
// Animation
|
|
1537
|
+
// ==================================================
|
|
1538
|
+
.animation,
|
|
1539
|
+
.animation::before {
|
|
1540
|
+
@include animation-duration(1s);
|
|
1541
|
+
@include animation-fill-mode(both);
|
|
1542
|
+
position: relative;
|
|
1543
|
+
transition: transform 1s linear;
|
|
1544
|
+
will-change: transform;
|
|
1545
|
+
|
|
1546
|
+
&.infinite,
|
|
1547
|
+
&.infinite::before { @include animation-iteration-count(infinite); }
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
// Effects
|
|
1551
|
+
// ==================================================
|
|
1552
|
+
.animation-effect-bounce {
|
|
1553
|
+
@include animation-name(animation-bounce);
|
|
1554
|
+
@include transform-origin(center bottom);
|
|
1555
|
+
}
|
|
1556
|
+
.animation-effect-bounce-in { @include animation-name(animation-bounce-in); }
|
|
1557
|
+
.animation-effect-bounce-in-down { @include animation-name(animation-bounce-in-down); }
|
|
1558
|
+
.animation-effect-bounce-in-left { @include animation-name(animation-bounce-in-left); }
|
|
1559
|
+
.animation-effect-bounce-in-right { @include animation-name(animation-bounce-in-right); }
|
|
1560
|
+
.animation-effect-bounce-in-up { @include animation-name(animation-bounce-in-up); }
|
|
1561
|
+
.animation-effect-bounce-out { @include animation-name(animation-bounce-out); }
|
|
1562
|
+
.animation-effect-bounce-out-down { @include animation-name(animation-bounce-out-down); }
|
|
1563
|
+
.animation-effect-bounce-out-left { @include animation-name(animation-bounce-out-left); }
|
|
1564
|
+
.animation-effect-bounce-out-right { @include animation-name(animation-bounce-out-right); }
|
|
1565
|
+
.animation-effect-bounce-out-up { @include animation-name(animation-bounce-out-up); }
|
|
1566
|
+
.animation-effect-fade-in { @include animation-name(animation-fade-in); }
|
|
1567
|
+
.animation-effect-fade-in-down { @include animation-name(animation-fade-in-down); }
|
|
1568
|
+
.animation-effect-fade-in-down-big { @include animation-name(animation-fade-in-down-big); }
|
|
1569
|
+
.animation-effect-fade-in-left { @include animation-name(animation-fade-in-left); }
|
|
1570
|
+
.animation-effect-fade-in-left-big { @include animation-name(animation-fade-in-left); }
|
|
1571
|
+
.animation-effect-fade-in-right { @include animation-name(animation-fade-in-right); }
|
|
1572
|
+
.animation-effect-fade-in-right-big { @include animation-name(animation-fade-in-right-big); }
|
|
1573
|
+
.animation-effect-fade-in-up { @include animation-name(animation-fade-in-up); }
|
|
1574
|
+
.animation-effect-fade-in-up-big { @include animation-name(animation-fade-in-up-big); }
|
|
1575
|
+
.animation-effect-fade-out { @include animation-name(animation-fade-out); }
|
|
1576
|
+
.animation-effect-fade-out-down { @include animation-name(animation-fade-out-down); }
|
|
1577
|
+
.animation-effect-fade-out-down-big { @include animation-name(animation-fade-out-down-big); }
|
|
1578
|
+
.animation-effect-fade-out-left { @include animation-name(animation-fade-out-left); }
|
|
1579
|
+
.animation-effect-fade-out-left-big { @include animation-name(animation-fade-out-left-big); }
|
|
1580
|
+
.animation-effect-fade-out-right { @include animation-name(animation-fade-out-right); }
|
|
1581
|
+
.animation-effect-fade-out-right-big { @include animation-name(animation-fade-out-right-big); }
|
|
1582
|
+
.animation-effect-fade-out-up { @include animation-name(animation-fade-out-up); }
|
|
1583
|
+
.animation-effect-fade-out-up-big { @include animation-name(animation-fade-out-up-big); }
|
|
1584
|
+
.animation-effect-flash { @include animation-name(animation-flash); }
|
|
1585
|
+
.animation-effect-flip,
|
|
1586
|
+
.animation-effect-flip-in-x,
|
|
1587
|
+
.animation-effect-flip-in-y,
|
|
1588
|
+
.animation-effect-flip-out-x,
|
|
1589
|
+
.animation-effect-flip-out-y { @include backface-visibility(visible); }
|
|
1590
|
+
.animation-effect-flip { @include animation-name(animation-flip); }
|
|
1591
|
+
.animation-effect-flip-in-x { @include animation-name(animation-flip-in-x); }
|
|
1592
|
+
.animation-effect-flip-in-y { @include animation-name(animation-flip-in-y); }
|
|
1593
|
+
.animation-effect-flip-out-x { @include animation-name(animation-flip-out-x); }
|
|
1594
|
+
.animation-effect-flip-out-y { @include animation-name(animation-flip-out-y); }
|
|
1595
|
+
.animation-effect-hinge {
|
|
1596
|
+
@include animation-duration(2s);
|
|
1597
|
+
@include animation-name(animation-hinge);
|
|
1598
|
+
@include animation-timing-function(ease-in-out);
|
|
1599
|
+
}
|
|
1600
|
+
.animation-effect-jello {
|
|
1601
|
+
@include animation-name(animation-rubber-band);
|
|
1602
|
+
@include transform-origin(top);
|
|
1603
|
+
}
|
|
1604
|
+
.animation-effect-light-speed-in {
|
|
1605
|
+
@include animation-name(animation-light-speed-in);
|
|
1606
|
+
@include animation-timing-function(ease-out);
|
|
1607
|
+
}
|
|
1608
|
+
.animation-effect-light-speed-out {
|
|
1609
|
+
@include animation-name(animation-light-speed-out);
|
|
1610
|
+
@include animation-timing-function(ease-in);
|
|
1611
|
+
}
|
|
1612
|
+
.animation-effect-pulse { @include animation-name(animation-pulse); }
|
|
1613
|
+
.animation-effect-roll-in { @include animation-name(animation-roll-in); }
|
|
1614
|
+
.animation-effect-roll-out { @include animation-name(animation-roll-out); }
|
|
1615
|
+
.animation-effect-rotate-in { @include animation-name(animation-rotate-in); }
|
|
1616
|
+
.animation-effect-rotate-in-down-left { @include animation-name(animation-rotate-in-down-left); }
|
|
1617
|
+
.animation-effect-rotate-in-down-right { @include animation-name(animation-rotate-in-down-right); }
|
|
1618
|
+
.animation-effect-rotate-in-up-left { @include animation-name(animation-rotate-in-up-left); }
|
|
1619
|
+
.animation-effect-rotate-in-up-right { @include animation-name(animation-rotate-in-up-right); }
|
|
1620
|
+
.animation-effect-rotate-out { @include animation-name(animation-rotate-out); }
|
|
1621
|
+
.animation-effect-rotate-out-down-left { @include animation-name(animation-rotate-out-down-left); }
|
|
1622
|
+
.animation-effect-rotate-out-down-right { @include animation-name(animation-rotate-out-down-right); }
|
|
1623
|
+
.animation-effect-rotate-out-up-left { @include animation-name(animation-rotate-out-up-left); }
|
|
1624
|
+
.animation-effect-rotate-out-up-right { @include animation-name(animation-rotate-out-up-right); }
|
|
1625
|
+
.animation-effect-rubber-band { @include animation-name(animation-rubber-band); }
|
|
1626
|
+
.animation-effect-shake { @include animation-name(animation-shake); }
|
|
1627
|
+
.animation-effect-slide-in-down { @include animation-name(animation-slide-in-down); }
|
|
1628
|
+
.animation-effect-slide-in-left { @include animation-name(animation-slide-in-left); }
|
|
1629
|
+
.animation-effect-slide-in-right { @include animation-name(animation-slide-in-right); }
|
|
1630
|
+
.animation-effect-slide-in-up { @include animation-name(animation-slide-in-up); }
|
|
1631
|
+
.animation-effect-slide-out-down { @include animation-name(animation-slide-out-down); }
|
|
1632
|
+
.animation-effect-slide-out-left { @include animation-name(animation-slide-out-left); }
|
|
1633
|
+
.animation-effect-slide-out-right { @include animation-name(animation-slide-out-right); }
|
|
1634
|
+
.animation-effect-slide-out-up { @include animation-name(animation-slide-out-up); }
|
|
1635
|
+
.animation-effect-spin,
|
|
1636
|
+
.animation-effect-spin::before {
|
|
1637
|
+
@include animation-name(animation-spin);
|
|
1638
|
+
@include animation-timing-function(linear);
|
|
1639
|
+
@include transform-origin(center);
|
|
1640
|
+
}
|
|
1641
|
+
.animation-effect-swing {
|
|
1642
|
+
@include animation-name(animation-swing);
|
|
1643
|
+
@include transform-origin(top center);
|
|
1644
|
+
}
|
|
1645
|
+
.animation-effect-tada { @include animation-name(animation-tada); }
|
|
1646
|
+
.animation-effect-wobble { @include animation-name(animation-wobble); }
|
|
1647
|
+
.animation-effect-zoom-in { @include animation-name(animation-zoom-in); }
|
|
1648
|
+
.animation-effect-zoom-in-down { @include animation-name(animation-zoom-in-down); }
|
|
1649
|
+
.animation-effect-zoom-in-left { @include animation-name(animation-zoom-in-left); }
|
|
1650
|
+
.animation-effect-zoom-in-right { @include animation-name(animation-zoom-in-right); }
|
|
1651
|
+
.animation-effect-zoom-in-up { @include animation-name(animation-zoom-in-up); }
|
|
1652
|
+
.animation-effect-zoom-out { @include animation-name(animation-zoom-out); }
|
|
1653
|
+
.animation-effect-zoom-out-down { @include animation-name(animation-zoom-out-down); }
|
|
1654
|
+
.animation-effect-zoom-out-left { @include animation-name(animation-zoom-out-left); }
|
|
1655
|
+
.animation-effect-zoom-out-right { @include animation-name(animation-zoom-out-right); }
|
|
1656
|
+
.animation-effect-zoom-out-up { @include animation-name(animation-zoom-out-up); }
|
|
1657
|
+
|
|
1658
|
+
// Delays
|
|
1659
|
+
// ==================================================
|
|
1660
|
+
@each $name, $delay in $animation-delays {
|
|
1661
|
+
.animation-delay-#{$name},
|
|
1662
|
+
.animation-delay-#{$name}::before { @include animation-delay($delay); }
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
// Durations
|
|
1666
|
+
// ==================================================
|
|
1667
|
+
@each $name, $duration in $animation-durations {
|
|
1668
|
+
.animation-duration-#{$name},
|
|
1669
|
+
.animation-duration-#{$name}::before { @include animation-duration($duration); }
|
|
1670
|
+
}
|