You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
421 B
CSS
23 lines
421 B
CSS
.FadeOutFrame {
|
|
opacity: 1;
|
|
}
|
|
.FadeOutFrame.fadeout {
|
|
-webkit-transition: all 1.5s;
|
|
-moz-transition: all 1.5s;
|
|
-ms-transition: all 1.5s;
|
|
-o-transition: all 1.5s;
|
|
transition: all 1.5s;
|
|
opacity: 0;
|
|
}
|
|
.FadeInFrame {
|
|
opacity: 0;
|
|
}
|
|
.FadeInFrame.fadein {
|
|
-webkit-transition: all 1.5s;
|
|
-moz-transition: all 1.5s;
|
|
-ms-transition: all 1.5s;
|
|
-o-transition: all 1.5s;
|
|
transition: all 1.5s;
|
|
opacity: 1;
|
|
}
|