美文网首页
滚动播放

滚动播放

作者: 爱绑架的猫 | 来源:发表于2019-04-02 14:10 被阅读0次
<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)

});

相关文章

网友评论

      本文标题:滚动播放

      本文链接:https://www.haomeiwen.com/subject/qpqgbqtx.html