This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 3 files changed +11
-12
lines changed
3 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 61
61
* .animate-enter {
62
62
* -webkit-transition: 1s linear all; /* Safari/Chrome */
63
63
* -moz-transition: 1s linear all; /* Firefox */
64
- * -ms-transition: 1s linear all; /* IE10 */
65
64
* -o-transition: 1s linear all; /* Opera */
66
- * transition: 1s linear all; /* Future Browsers */
65
+ * transition: 1s linear all; /* IE10+ and Future Browsers */
67
66
*
68
67
* /* The animation preparation code */
69
68
* opacity: 0;
88
87
* <pre>
89
88
* <style type="text/css">
90
89
* .animate-enter {
91
- * -webkit-animation: enter_sequence 1s linear;
92
- * -moz-animation: enter_sequence 1s linear;
93
- * -o-animation: enter_sequence 1s linear;
94
- * animation: enter_sequence 1s linear;
90
+ * -webkit-animation: enter_sequence 1s linear; /* Safari/Chrome */
91
+ * -moz-animation: enter_sequence 1s linear; /* Firefox */
92
+ * -o-animation: enter_sequence 1s linear; /* Opera */
93
+ * animation: enter_sequence 1s linear; /* IE10+ and Future Browsers */
95
94
* }
96
95
* @-webkit-keyframes enter_sequence {
97
96
* from { opacity:0; }
Original file line number Diff line number Diff line change 52
52
</span>
53
53
</file>
54
54
<file name="animations.css">
55
- .example-leave-setup , .example-enter-setup {
55
+ .example-leave, .example-enter {
56
56
-webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
57
57
-moz-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
58
58
-ms-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
59
59
-o-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
60
60
transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
61
61
}
62
62
63
- .example-enter-setup {
63
+ .example-enter {
64
64
opacity:0;
65
65
}
66
- .example-enter-setup .example-enter-start {
66
+ .example-enter.example-enter-active {
67
67
opacity:1;
68
68
}
69
69
70
- .example-leave-setup {
70
+ .example-leave {
71
71
opacity:1;
72
72
}
73
- .example-leave-setup .example-leave-start {
73
+ .example-leave.example-leave-active {
74
74
opacity:0;
75
75
}
76
76
</file>
Original file line number Diff line number Diff line change 33
33
* - Otherwise enable scrolling only if the expression evaluates to truthy value.
34
34
*
35
35
* @example
36
- <example>
36
+ <example animations="true" >
37
37
<file name="index.html">
38
38
<div ng-controller="Ctrl">
39
39
<select ng-model="template" ng-options="t.name for t in templates">
You can’t perform that action at this time.
0 commit comments