1

我需要每 5 秒刷新一次图像。无闪烁。所以搜索谷歌并找到一些解决方案。但是该代码刷新图像并且没有闪烁,但它会在一段时间后停止刷新图像。有时它会在 1 分钟后停止刷新图像,有时会在 3 分钟后停止刷新图像,有时会在 15 分钟后停止刷新图像。

这是我的代码

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>

<script language="JavaScript">
var x = 0,
    y = 0;
var canvas, context, img;

function timedRefresh() {
    canvas = document.getElementById("x");
    context = canvas.getContext("2d");
    img = new Image();
    img.src = "CC4.png?" + Math.random();
    img.onload = function () {
        context.drawImage(img, x, y);
        x += 0;
        y += 0;
        setTimeout('timedRefresh()', 5000);
    };
}
window.onload = timedRefresh;

</script>
</head>

<body id="home" onload="setTimeout('timedRefresh()',5000)">
<canvas id="x" width="800" height="590"/>
</body>
</html>
4

1 回答 1

3

我想这是一个网络问题,所以当它无法加载图像时它会停止。尝试添加

img.onerror = function(){ setTimeout('timedRefresh()', 1000); }

所以即使有问题它也会重试加载

于 2013-08-16T14:16:17.063 回答