<div id="scrollDiv" style="overflow: hidden;height:60px;">
<ul>
<li v-for="i in 6" :key="i">
<a href="/news/shxw/1629.html" target="_blank">
<img src="" width="1040" height="60">
</a>
</li>
</ul>
</div>
JS
function AutoScroll(obj){
$(obj).find("ul:first").animate({
marginTop:"-60px"
},500,function(){
$(this).css({marginTop:"0px"}).find("li:first").appendTo(this);
});
}
$(document).ready(function(){
setInterval('AutoScroll("#scrollDiv")',4000)
});