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);
  }
}
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b35c0d-2bfc9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b35c0d-2bfc9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?