Hacker News new | ask | show | jobs
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;
  }
1 comments

RIP <marquee>. I bet the geocities mirrors seem so lifeless now.