Welcome to the DFO World Wiki. With many major updates since the release of DFO, many items are missing. Visit Item Database Project to learn more.
Please remember to click "show preview" before saving the page.
Thanks for the updated logo snafuPop!

Difference between revisions of "User:No.5972/common.css"

From DFO World Wiki
Jump to: navigation, search
(HTML CSS and CSS3 TEST)
 
Line 1: Line 1:
 
.csstest1 {
 
.csstest1 {
 
     font-size:22px;
 
     font-size:22px;
 +
}
 +
 +
.mask
 +
{
 +
width:0px;
 +
height:0px;
 +
background:#ffffff;
 +
position:absolute;
 +
animation:welcome 2s;
 +
-moz-animation:welcome 2s; /* Firefox */
 +
-webkit-animation:welcome 2s; /* Safari and Chrome */
 +
-o-animation:welcome 2s; /* Opera */
 +
}
 +
 +
@keyframes welcome
 +
{
 +
from {height:1000px;width:1000px;}
 +
to {height:0px;width:1000px;}
 +
}
 +
 +
@-webkit-keyframes welcome
 +
{
 +
from {height:1000px;width:1000px;}
 +
to {height:0px;width:1000px;}
 +
}
 +
 +
@-ms-keyframes welcome
 +
{
 +
from {height:1000px;width:1000px;}
 +
to {height:0px;width:1000px;}
 
}
 
}

Revision as of 08:24, 18 January 2016

.csstest1 {
    font-size:22px;
}

.mask
{
width:0px;
height:0px;
background:#ffffff;
position:absolute;
animation:welcome 2s;
-moz-animation:welcome 2s; /* Firefox */
-webkit-animation:welcome 2s; /* Safari and Chrome */
-o-animation:welcome 2s; /* Opera */
}

@keyframes welcome
{
from {height:1000px;width:1000px;}
to {height:0px;width:1000px;}
}

@-webkit-keyframes welcome
{
from {height:1000px;width:1000px;}
to {height:0px;width:1000px;}
}

@-ms-keyframes welcome
{
from {height:1000px;width:1000px;}
to {height:0px;width:1000px;}
}