html 5秒后更改图像src

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 5秒后更改图像src相关的知识,希望对你有一定的参考价值。

<img id="thisImg" alt="img" src="images/img0.png"/>

<script type="text/javascript">
    $(function(){
        //prepare Your data array with img urls
        var dataArray=new Array();
        dataArray[0]="images/img1.png";
        dataArray[1]="images/img2.png";
        dataArray[2]="images/img3.png";
        dataArray[3]="images/img0.png";

        //start with id=0 after 5 seconds
        var thisId=0;

        window.setInterval(function(){
            $('#thisImg').attr('src',dataArray[thisId]);
            thisId++; //increment data array id
            if (thisId==3) thisId=0; //repeat from start
        },5000);        
    });
</script>

以上是关于html 5秒后更改图像src的主要内容,如果未能解决你的问题,请参考以下文章

防止 HTML 5 `video` 在 src 更改时闪烁海报图像

延迟 5 秒后用文字替换图像

以循环方式使用jquery更改多个图像src

如何通过c#更改html图像src

离子 2 /3 ; Onclick 时更改图像 src 标签

将imageview的图像更改为5秒,然后恢复原始图像