6 ms·
It seems only -webkit- prefixes are being used for this, which is why this doesn't work in FF. @-webkit-keyframes scroll { from { -webkit-transform
by b3tta 12y ago
It seems only -webkit- prefixes are being used for this, which is why this doesn't work in FF.
@-webkit-keyframes scroll {
from {
-webkit-transform: translate(0, 0);
}
to {
-webkit-transform: translate(-300px, 0);
}
}
.resultMarquee{
-webkit-animation: scroll 7s linear 0 infinite;
position: absolute;
}
- grrowl 12y agoRIP <marquee>. I bet the geocities mirrors seem so lifeless now.