Stabsstelle Career Center & Wissenschaftliche Weiterbildung

test.css

text/css test.css — 1 KB

Dateiinhalt

body { margin: 20px; }

.marquee {
  height: 25px;

  overflow: hidden;
  position: relative;
}

.marquee div {
  display: block;
  width: 200%;
  height: 30px;

  position: absolute;
  overflow: hidden;

  animation: marquee 10s linear infinite;
}

.marquee span {
  float: left;
  width: 50%;
}

@keyframes marquee {
  0% { left: 0; }
  50% { left: 25%}
  100% { left: 0%; }
}