我试图在 5 秒后将图像移动到网页上的随机位置,到目前为止我有这个:
var image = document.getElementById('image');
var position = 0;
var timing = setInterval(timing, 5000);
image.style.position = 'relative';
image.onclick=function move(direction){
var top = Math.floor(Math.random()*75);
var left = Math.floor(Math.random()*75);
var right = Math.floor(Math.random()*75);
var bottom = Math.floor(Math.random()*75);
image.style.top = top + 'px';
image.style.left = left + 'px';
image.style.right = right + 'px';
image.style.bottom = bottom + 'px';
}
如何让它在 5 秒后移动?
海绵宝宝撒
相关分类