|
|
|
|
|
by b3tta
4372 days 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;
}
|
|