sample of img movement by timer function

by sii_side

HTML

<img alt="bo-run.gif">

CSS

img {
  position: absolute;
  top: 10px;
  left: 10px;
}

JavaScript

var img = document.querySelector("img");

var timer = window.setTimeout(function() {
	img.style.left = "200px";
}, 3000);