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
(Undo revision 84330 by No.5972 (talk))
Line 57: Line 57:
 
.marquee {
 
.marquee {
 
   width: 100%;
 
   width: 100%;
 +
  background: #ffffff;
 
   height: 30px;
 
   height: 30px;
 
   -webkit-animation: marquee 8s linear infinite;
 
   -webkit-animation: marquee 8s linear infinite;

Revision as of 11:08, 26 January 2016

.csstest1 {
    font-size:22px;
}

.mask
{
width:2000px;
height:2000px;
background:#ffffff;
position:absolute;
transform:translateX(2000px);
visibility:hidden;
animation:welcome 7s;
-moz-animation:welcome 7s; /* Firefox */
-webkit-animation:welcome 7s; /* Safari and Chrome */
-o-animation:welcome 7s; /* Opera */
}

@keyframes welcome
{
from {transform:translateX(0px);visibility:visible;}
to {transform:translateX(2000px);visibility:visible;}
}

@-webkit-keyframes welcome
{
from {transform:translateX(0px);visibility:visible;}
to {transform:translateX(2000px);visibility:visible;}
}

@-ms-keyframes welcome
{
from {transform:translateX(0px);visibility:visible;}
to {transform:translateX(2000px);visibility:visible;}
}

@-webkit-keyframes marquee {
  from {left:100%}
  to {left: -150%}
}
@-moz-keyframes marquee {
  from {left:100%}
  to {left: -150%}
}
@-ms-keyframes marquee {
  from {left:100%}
  to {left: -150%}
}
@-o-keyframes marquee {
  from {left:100%}
  to {left: -150%}
}
@keyframes marquee {
  from {left:100%}
  to {left: -150%}
}
.marquee {
  width: 100%;
  background: #ffffff;
  height: 30px;
  -webkit-animation: marquee 8s linear infinite;
  -moz-animation: marquee 8s linear infinite;
  -ms-animation: marquee 8s linear infinite;
  -o-animation: marquee 8s linear infinite;
  animation: marquee 8s linear infinite;
}