oulu-rails 0.5.23 → 0.5.24

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7cc02577935cc850eb539e0018cf8f19b3c870c7
4
- data.tar.gz: 9cf37168a8a6b39a5708850c6c53d25e08cedf20
3
+ metadata.gz: 39705079f56dedf832417d2885c5cccfe8704947
4
+ data.tar.gz: 7d2f6f8be2d55063959d8da6abb5c44e0b05302c
5
5
  SHA512:
6
- metadata.gz: f929bd6881fd463834e7da5d069181492c8ddd1d62033ce157ed9594d06f7bbc3ef72dea3878a9b9a634f5daa189551f99506e0aa50df44817b5a2366a258255
7
- data.tar.gz: 0c4fecbc0fb96a0934d46a8b92adc99fefbc3ee09fca014074313dcd7bb485c04727778b5f6a1c022f28f965bd224da1c01d929bf7397d4f2abd85d60fb33775
6
+ metadata.gz: 52a4f49e26c7d08cc9e5f4132f71cae1cc54ed4c4372c0daa4a1d34d29a97db22317820028dd1567b9512eb1187f2d583c4db807e9a6441f42b84b28f95b6ad7
7
+ data.tar.gz: d9234d759dafdb407b0782b2bfc78d55ee76c5fa956ebed2db9d58664732e90a67222b34cf0cb7f15329921a621395b5f69991d0513e4d7ca9ee5fd4361b5f29
@@ -1,3 +1,3 @@
1
1
  module OuluRails
2
- VERSION = "0.5.23"
2
+ VERSION = "0.5.24"
3
3
  end
@@ -9,6 +9,4 @@
9
9
  @import helper/base-helper
10
10
  @import helper/margin-padding
11
11
  @import helper/typoglaphy
12
- @import helper/click-actions
13
- @import helper/fade-actions
14
12
  @import helper/no-gutter-grids
@@ -1,8 +1,8 @@
1
- .#{$wrapper-class-name}
2
- +rem('max-width', $wrapper-max-width)
1
+ .#{$container-class-name}
2
+ +rem('max-width', $container-max-width)
3
3
  +box-sizing(border-box)
4
4
  +margin(horizontal, auto)
5
- +padding(horizontal, $wrapper-horizontal-padding)
5
+ +padding(horizontal, $container-horizontal-padding)
6
6
  clear: both
7
7
 
8
8
  // state
@@ -37,33 +37,10 @@
37
37
  -webkit-overflow-scrolling: touch
38
38
  width: 100%
39
39
  position: relative
40
- .is-max-wd
40
+ .is-max-width-100
41
41
  width: 100%
42
42
  display: block
43
43
 
44
- .is-mgb-0
45
- margin-bottom: 0 !important
46
- .is-pdt-0
47
- padding-top: 0 !important
48
- .is-pd-0
49
- padding: 0 !important
50
-
51
- body
52
- .is-hidden
53
- visibility: hidden
54
- display: none
55
- +opacity(0)
56
- .is-invisible
57
- margin-left: -99999px
58
- position: absolute
59
- visibility: hidden
60
- +opacity(0)
61
- .is-shown
62
- +inline-block
63
- .is-horizontal-closed
64
- width: 0
65
- overflow: hidden
66
-
67
44
  .is-z-index-100
68
45
  z-index: 100
69
46
  position: relative
@@ -18,21 +18,5 @@ body
18
18
  +rem('padding-left', #{$i*4}px)
19
19
  .is-padding-right-#{$i*4}
20
20
  +rem('padding-right', #{$i*4}px)
21
-
22
- // will delete next ver
23
- .is-mgb-#{$i*4}
24
- +rem('margin-bottom', #{$i*4}px)
25
- .is-mgt-#{$i*4}
26
- +rem('margin-top', #{$i*4}px)
27
- .is-mgl-#{$i*4}
28
- +rem('margin-left', #{$i*4}px)
29
- .is-mgr-#{$i*4}
30
- +rem('margin-right', #{$i*4}px)
31
- .is-pdb-#{$i*4}
32
- +rem('padding-bottom', #{$i*4}px)
33
- .is-pdt-#{$i*4}
34
- +rem('padding-top', #{$i*4}px)
35
- .is-pdl-#{$i*4}
36
- +rem('padding-left', #{$i*4}px)
37
- .is-pdr-#{$i*4}
38
- +rem('padding-right', #{$i*4}px)
21
+ .is-padding-horizontal-#{$i*4}
22
+ +padding(horizontal, #{$i*4}px)
@@ -1,3 +1,2 @@
1
- body
2
- .no-gutter-grids
3
- +grid-columns(0)
1
+ .no-gutter-grids
2
+ +grid-columns(0)
@@ -1,8 +1,18 @@
1
- =dotted-line($color: rgba(#000, 1.0), $stripe: null)
2
- $stripe-width: if(length($stripe) >= 1, nth($stripe, 1), 1px)
3
- $gatter-width: if(length($stripe) >= 2, nth($stripe, 2), 4px)
4
- $size: if(length($stripe) >= 3, nth($stripe, 3), 1px)
5
- +background-image(linear-gradient(left, color-stops($color, $color (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent 100%)))
1
+ // +dotted-line(black, 20px 10px 4px)
2
+ =dotted-line($stripe-color: rgba(#000, 1), $stripe: null)
3
+ $stripe-width: optional_nth($stripe, 1, 1px)
4
+ $gatter-width: optional_nth($stripe, 2, 4px)
5
+ $size: optional_nth($stripe, 3, 1px)
6
+ @if length($stripe-color) == 1
7
+ +background-image(linear-gradient(left, color-stops($stripe-color, $stripe-color (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent 100%)))
8
+ @else
9
+ @if percent(nth($stripe-color, 2))
10
+ $mix-stripe-color: darken(nth($stripe-color, 1), nth($stripe-color, 2))
11
+ +background-image(linear-gradient(left, color-stops($mix-stripe-color, $mix-stripe-color (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent 100%)))
12
+ background-color: nth($stripe-color, 1)
13
+ @else if color(nth($stripe-color, 2))
14
+ +background-image(linear-gradient(left, color-stops(nth($stripe-color, 1), nth($stripe-color, 1) (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent 100%)))
15
+ background-color: nth($stripe-color, 2)
6
16
  +background-size(($stripe-width + $gatter-width) ($stripe-width + $gatter-width))
7
17
  +rem('height', $size)
8
18
 
@@ -11,8 +21,12 @@
11
21
  @if length($stripe-color) == 1
12
22
  +background-image(linear-gradient(-45deg, $stripe-color 25%, transparent 25%, transparent 50%, $stripe-color 50%, $stripe-color 75%, transparent 75%, transparent))
13
23
  @else
14
- $mix-stripe-color: darken(nth($stripe-color, 1), nth($stripe-color, 2))
15
- +background-image(linear-gradient(-45deg, $mix-stripe-color 25%, transparent 25%, transparent 50%, $mix-stripe-color 50%, $mix-stripe-color 75%, transparent 75%, transparent))
16
- background-color: $background-color
24
+ @if percent(nth($stripe-color, 2))
25
+ $mix-stripe-color: darken(nth($stripe-color, 1), nth($stripe-color, 2))
26
+ +background-image(linear-gradient(-45deg, $mix-stripe-color 25%, transparent 25%, transparent 50%, $mix-stripe-color 50%, $mix-stripe-color 75%, transparent 75%, transparent))
27
+ background-color: nth($stripe-color, 1)
28
+ @else
29
+ +background-image(linear-gradient(-45deg, nth($stripe-color, 1) 25%, transparent 25%, transparent 50%, nth($stripe-color, 1) 50%, nth($stripe-color, 1) 75%, transparent 75%, transparent))
30
+ background-color: nth($stripe-color, 2)
17
31
  +background-size($size $size)
18
32
  +rem('height', $size)
@@ -83,7 +83,7 @@
83
83
  +filter(contrast(1.3) saturate(1.2) brightness(140%))
84
84
  position: relative
85
85
  &:after
86
- -webkit-filter: radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 92%, rgba(0, 0, 0, 0.69) 93%, rgba(0, 0, 0, 1) 100%)
86
+ +filter(radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 92%, rgba(0, 0, 0, 0.69) 93%, rgba(0, 0, 0, 1) 100%))
87
87
  +filter-setup
88
88
  +opacity(.9)
89
89
 
@@ -18,9 +18,9 @@ $rgbapng_px_size: 8 !default
18
18
  // layout
19
19
  ////////////////
20
20
 
21
- $wrapper-class-name: wrapper !default
22
- $wrapper-max-width: 1100px !default
23
- $wrapper-horizontal-padding: 16px !default
21
+ $container-class-name: container !default
22
+ $container-max-width: 1100px !default
23
+ $container-horizontal-padding: 16px !default
24
24
 
25
25
  /////////////////
26
26
  // selection
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oulu-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.23
4
+ version: 0.5.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - machida
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-27 00:00:00.000000000 Z
11
+ date: 2015-01-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass-rails
@@ -315,8 +315,6 @@ files:
315
315
  - vendor/assets/stylesheets/bootcamp/test/utils/_list-join.scss
316
316
  - vendor/assets/stylesheets/bootcamp/test/utils/_power.scss
317
317
  - vendor/assets/stylesheets/helper/_base-helper.css.sass
318
- - vendor/assets/stylesheets/helper/_click-actions.css.sass
319
- - vendor/assets/stylesheets/helper/_fade-actions.css.sass
320
318
  - vendor/assets/stylesheets/helper/_margin-padding.css.sass
321
319
  - vendor/assets/stylesheets/helper/_no-gutter-grids.css.sass
322
320
  - vendor/assets/stylesheets/helper/_typoglaphy.css.sass
@@ -1,188 +0,0 @@
1
- .is-bounce-expansion
2
- +experimental('animation', bounce-expansion 1000ms linear both)
3
- +relative
4
-
5
- +keyframes(bounce-expansion)
6
- 0%
7
- $transform: matrix3d(1.4, 0, 0, 0, 0, 1.4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
8
- +experimental('transform', $transform)
9
- 1.666667%
10
- $transform: matrix3d(1.34471, 0, 0, 0, 0, 1.34471, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
11
- +experimental('transform', $transform)
12
- 3.333333%
13
- $transform: matrix3d(1.28364, 0, 0, 0, 0, 1.28364, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
14
- +experimental('transform', $transform)
15
- 5%
16
- $transform: matrix3d(1.2213, 0, 0, 0, 0, 1.2213, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
17
- +experimental('transform', $transform)
18
- 6.666667%
19
- $transform: matrix3d(1.16126, 0, 0, 0, 0, 1.16126, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
20
- +experimental('transform', $transform)
21
- 8.333333%
22
- $transform: matrix3d(1.10616, 0, 0, 0, 0, 1.10616, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
23
- +experimental('transform', $transform)
24
- 10%
25
- $transform: matrix3d(1.05781, 0, 0, 0, 0, 1.05781, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
26
- +experimental('transform', $transform)
27
- 11.666667%
28
- $transform: matrix3d(1.01723, 0, 0, 0, 0, 1.01723, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
29
- +experimental('transform', $transform)
30
- 13.333333%
31
- $transform: matrix3d(0.98482, 0, 0, 0, 0, 0.98482, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
32
- +experimental('transform', $transform)
33
- 15%
34
- $transform: matrix3d(0.96047, 0, 0, 0, 0, 0.96047, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
35
- +experimental('transform', $transform)
36
- 16.666667%
37
- $transform: matrix3d(0.94365, 0, 0, 0, 0, 0.94365, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
38
- +experimental('transform', $transform)
39
- 18.333333%
40
- $transform: matrix3d(0.93356, 0, 0, 0, 0, 0.93356, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
41
- +experimental('transform', $transform)
42
- 20%
43
- $transform: matrix3d(0.92922, 0, 0, 0, 0, 0.92922, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
44
- +experimental('transform', $transform)
45
- 21.666667%
46
- $transform: matrix3d(0.92959, 0, 0, 0, 0, 0.92959, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
47
- +experimental('transform', $transform)
48
- 23.333333%
49
- $transform: matrix3d(0.93358, 0, 0, 0, 0, 0.93358, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
50
- +experimental('transform', $transform)
51
- 25%
52
- $transform: matrix3d(0.94017, 0, 0, 0, 0, 0.94017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
53
- +experimental('transform', $transform)
54
- 26.666667%
55
- $transform: matrix3d(0.94844, 0, 0, 0, 0, 0.94844, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
56
- +experimental('transform', $transform)
57
- 28.333333%
58
- $transform: matrix3d(0.95758, 0, 0, 0, 0, 0.95758, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
59
- +experimental('transform', $transform)
60
- 30%
61
- $transform: matrix3d(0.9669, 0, 0, 0, 0, 0.9669, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
62
- +experimental('transform', $transform)
63
- 31.666667%
64
- $transform: matrix3d(0.97588, 0, 0, 0, 0, 0.97588, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
65
- +experimental('transform', $transform)
66
- 33.333333%
67
- $transform: matrix3d(0.98412, 0, 0, 0, 0, 0.98412, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
68
- +experimental('transform', $transform)
69
- 35%
70
- $transform: matrix3d(0.99135, 0, 0, 0, 0, 0.99135, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
71
- +experimental('transform', $transform)
72
- 36.666667%
73
- $transform: matrix3d(0.99742, 0, 0, 0, 0, 0.99742, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
74
- +experimental('transform', $transform)
75
- 38.333333%
76
- $transform: matrix3d(1.00227, 0, 0, 0, 0, 1.00227, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
77
- +experimental('transform', $transform)
78
- 40%
79
- $transform: matrix3d(1.00591, 0, 0, 0, 0, 1.00591, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
80
- +experimental('transform', $transform)
81
- 41.666667%
82
- $transform: matrix3d(1.00843, 0, 0, 0, 0, 1.00843, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
83
- +experimental('transform', $transform)
84
- 43.333333%
85
- $transform: matrix3d(1.00994, 0, 0, 0, 0, 1.00994, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
86
- +experimental('transform', $transform)
87
- 45%
88
- $transform: matrix3d(1.01059, 0, 0, 0, 0, 1.01059, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
89
- +experimental('transform', $transform)
90
- 46.666667%
91
- $transform: matrix3d(1.01053, 0, 0, 0, 0, 1.01053, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
92
- +experimental('transform', $transform)
93
- 48.333333%
94
- $transform: matrix3d(1.00993, 0, 0, 0, 0, 1.00993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
95
- +experimental('transform', $transform)
96
- 50%
97
- $transform: matrix3d(1.00895, 0, 0, 0, 0, 1.00895, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
98
- +experimental('transform', $transform)
99
- 51.666667%
100
- $transform: matrix3d(1.00771, 0, 0, 0, 0, 1.00771, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
101
- +experimental('transform', $transform)
102
- 53.333333%
103
- $transform: matrix3d(1.00635, 0, 0, 0, 0, 1.00635, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
104
- +experimental('transform', $transform)
105
- 55%
106
- $transform: matrix3d(1.00495, 0, 0, 0, 0, 1.00495, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
107
- +experimental('transform', $transform)
108
- 56.666667%
109
- $transform: matrix3d(1.00361, 0, 0, 0, 0, 1.00361, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
110
- +experimental('transform', $transform)
111
- 58.333333%
112
- $transform: matrix3d(1.00237, 0, 0, 0, 0, 1.00237, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
113
- +experimental('transform', $transform)
114
- 60%
115
- $transform: matrix3d(1.00129, 0, 0, 0, 0, 1.00129, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
116
- +experimental('transform', $transform)
117
- 61.666667%
118
- $transform: matrix3d(1.00039, 0, 0, 0, 0, 1.00039, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
119
- +experimental('transform', $transform)
120
- 63.333333%
121
- $transform: matrix3d(0.99966, 0, 0, 0, 0, 0.99966, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
122
- +experimental('transform', $transform)
123
- 65%
124
- $transform: matrix3d(0.99912, 0, 0, 0, 0, 0.99912, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
125
- +experimental('transform', $transform)
126
- 66.666667%
127
- $transform: matrix3d(0.99874, 0, 0, 0, 0, 0.99874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
128
- +experimental('transform', $transform)
129
- 68.333333%
130
- $transform: matrix3d(0.99851, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
131
- +experimental('transform', $transform)
132
- 70%
133
- $transform: matrix3d(0.99842, 0, 0, 0, 0, 0.99842, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
134
- +experimental('transform', $transform)
135
- 71.666667%
136
- $transform: matrix3d(0.99842, 0, 0, 0, 0, 0.99842, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
137
- +experimental('transform', $transform)
138
- 73.333333%
139
- $transform: matrix3d(0.99851, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
140
- +experimental('transform', $transform)
141
- 75%
142
- $transform: matrix3d(0.99866, 0, 0, 0, 0, 0.99866, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
143
- +experimental('transform', $transform)
144
- 76.666667%
145
- $transform: matrix3d(0.99885, 0, 0, 0, 0, 0.99885, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
146
- +experimental('transform', $transform)
147
- 78.333333%
148
- $transform: matrix3d(0.99905, 0, 0, 0, 0, 0.99905, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
149
- +experimental('transform', $transform)
150
- 80%
151
- $transform: matrix3d(0.99926, 0, 0, 0, 0, 0.99926, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
152
- +experimental('transform', $transform)
153
- 81.666667%
154
- $transform: matrix3d(0.99946, 0, 0, 0, 0, 0.99946, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
155
- +experimental('transform', $transform)
156
- 83.333333%
157
- $transform: matrix3d(0.99964, 0, 0, 0, 0, 0.99964, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
158
- +experimental('transform', $transform)
159
- 85%
160
- $transform: matrix3d(0.99981, 0, 0, 0, 0, 0.99981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
161
- +experimental('transform', $transform)
162
- 86.666667%
163
- $transform: matrix3d(0.99994, 0, 0, 0, 0, 0.99994, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
164
- +experimental('transform', $transform)
165
- 88.333333%
166
- $transform: matrix3d(1.00005, 0, 0, 0, 0, 1.00005, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
167
- +experimental('transform', $transform)
168
- 90%
169
- $transform: matrix3d(1.00013, 0, 0, 0, 0, 1.00013, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
170
- +experimental('transform', $transform)
171
- 91.666667%
172
- $transform: matrix3d(1.00019, 0, 0, 0, 0, 1.00019, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
173
- +experimental('transform', $transform)
174
- 93.333333%
175
- $transform: matrix3d(1.00022, 0, 0, 0, 0, 1.00022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
176
- +experimental('transform', $transform)
177
- 95%
178
- $transform: matrix3d(1.00024, 0, 0, 0, 0, 1.00024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
179
- +experimental('transform', $transform)
180
- 96.666667%
181
- $transform: matrix3d(1.00024, 0, 0, 0, 0, 1.00024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
182
- +experimental('transform', $transform)
183
- 98.333333%
184
- $transform: matrix3d(1.00022, 0, 0, 0, 0, 1.00022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
185
- +experimental('transform', $transform)
186
- 100%
187
- $transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
188
- +experimental('transform', $transform)
@@ -1,30 +0,0 @@
1
- //
2
- animation-name 名前
3
- animation-duration 秒
4
- animation-timing-function 動き方
5
- animation-delay 遅延(秒)
6
- animation-iteration-count 繰り返し回数(無限はinfinite)
7
- animation-direction 反転alternate 通常normal
8
-
9
- <animation-name>
10
- <animation-duration>
11
- <animation-timing-function>
12
- <animation-delay>
13
- <animation-iteration-count>
14
- <animation-direction>
15
- <animation-fill>
16
-
17
- .is-fadeout
18
- +experimental('animation', fadeout 2s linear 0s 1 alternate forwards)
19
- height: 0
20
- min-height: 0
21
- overflow: hidden
22
- +relative
23
-
24
- +keyframes(fadeout)
25
- 0%
26
- +opacity(1)
27
- height: auto
28
- 100%
29
- +opacity(0)
30
- height: 0