CSS: Marquee Animation

By Xah Lee. Date: .

Example

some thing in the news

Code

some thing in the news
@keyframes slide370 {
 0% {
  transform: translateX(700px);
 }
 100% {
  transform: translateX(0px);
 }
}

.slide-b39d {
 white-space: nowrap;
 overflow: hidden;
 position: relative;
 animation: slide370 10s linear infinite;
 width: 100vw;
}