Js to achieve text Walking Lantern (text scrolling effect) marquee compatibility problem can not be realized, find another way to solve the problem

ajaxjsjspidjsp<a>id;marquee;.
Mar.02,2021

gives you a simple
html

.
<div class="container">
  <div class="content">
    
  </div>
</div>

css

.container{
  width:300px;
  height:50px;
  background:pink;
  position:relative;
  overflow:hidden;
}
.content{
  position:absolute;
  animation:move linear 4s infinite;
}
@keyframes move{
  from{
    transform:translateX(-100%);
  }
  to{
    transform:translateX(300px);
  }
}
Menu