top | item 7948813

Marquee

17 points| HeinZawHtet | 11 years ago |google.com | reply

3 comments

order
[+] Derpdiherp|11 years ago|reply
Doesn't work on Firefox 30.0 on Ubuntu. Blink worked though.
[+] b3tta|11 years ago|reply
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;
  }