我想使用 setInterval 制作动画。图像必须从左到右改变其位置。
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title>animacja</title>
<style type="text/css">
#obrazek
{
position: relative;
left: 1px;
}
</style>
<script type="text/javascript" src="animacja.js"></script>
</head>
<body>
<img src="smile.jpg" id="obrazek" alt="Usmiech" width="100" height="100" />
</body>
</html>
JavaScript:
window.onload = inicjuj;
function inicjuj()
{
setInterval(function(){animacja();},1000);
}
function animacja()
{
var obj = document.getElementById("obrazek");
var wartosc = parseInt(obj.style.left, 10);
obj.style.left = (wartosc + 10) + "px";
}
不幸的是 js 不起作用,我不知道为什么。我已经检查过并且 animacja 函数运行但是图像没有改变它的位置。