This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -21,33 +21,33 @@ Below is a quick example of animations being enabled for `ngShow` and `ngHide`:
21
21
<label>
22
22
<input type="checkbox" ng-model="checked" style="float:left; margin-right:10px;"> Is Visible...
23
23
</label>
24
- <div class="check-element animate -show-hide" ng-show="checked" style="clear:both;">
24
+ <div class="check-element sample -show-hide" ng-show="checked" style="clear:both;">
25
25
Visible...
26
26
</div>
27
27
</div>
28
28
</file>
29
29
<file name="animations.css">
30
- .animate -show-hide {
30
+ .sample -show-hide {
31
31
padding:10px;
32
32
border:1px solid black;
33
33
background:white;
34
34
}
35
35
36
- .animate -show-hide.ng-hide-add, .animate -show-hide.ng-hide-remove {
36
+ .sample -show-hide.ng-hide-add, .sample -show-hide.ng-hide-remove {
37
37
-webkit-transition:all linear 0.5s;
38
38
-moz-transition:all linear 0.5s;
39
39
-o-transition:all linear 0.5s;
40
40
transition:all linear 0.5s;
41
41
display:block!important;
42
42
}
43
43
44
- .animate -show-hide.ng-hide-add.ng-hide-add-active,
45
- .animate -show-hide.ng-hide-remove {
44
+ .sample -show-hide.ng-hide-add.ng-hide-add-active,
45
+ .sample -show-hide.ng-hide-remove {
46
46
opacity:0;
47
47
}
48
48
49
- .animate -show-hide.ng-hide-add,
50
- .animate -show-hide.ng-hide-remove.ng-hide-remove-active {
49
+ .sample -show-hide.ng-hide-add,
50
+ .sample -show-hide.ng-hide-remove.ng-hide-remove-active {
51
51
opacity:1;
52
52
}
53
53
</file>
You can’t perform that action at this time.
0 commit comments