我有以下问题我有21张小图片,我希望它们以定义的时间间隔随机放置在窗口中。
我有以下代码,我知道导致问题的原因,但我无法解决。
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function () {
if (oldonload) {
oldonload();
}
func();
}
}
}
addLoadEvent(Prep6);
addLoadEvent(Prep7);
function Prep6() {
window_Height = window.innerHeight;
window_Width = window.innerWidth;
image_Element = document.getElementById("loader06");
image_Height = image_Element.clientHeight;
image_Width = image_Element.clientWidth;
availSpace_V = window_Height - image_Height;
availSpace_H = window_Width - image_Width;
moveImage7();
var changeInterval = 300;
setInterval(moveImage7, changeInterval);
}
function moveImage6() {
var randNum_V = Math.round(Math.random() * availSpace_V);
var randNum_H = Math.round(Math.random() * availSpace_H);
image_Element.style.top = randNum_V + "px";
image_Element.style.left = randNum_H + "px";
}
function Prep7() {
window_Height = window.innerHeight;
window_Width = window.innerWidth;
image_Element = document.getElementById("loader07");
image_Height = image_Element.clientHeight;
image_Width = image_Element.clientWidth;
availSpace_V = window_Height7 - image_Height;
availSpace_H = window_Width - image_Width;
moveImage7();
var changeInterval = 300;
setInterval(moveImage7, changeInterval);
}
function moveImage7() {
var randNum_V = Math.round(Math.random() * availSpace_V);
var randNum_H = Math.round(Math.random() * availSpace_H);
image_Element.style.top = randNum_V + "px";
image_Element.style.left = randNum_H + "px";
}
问题是:
moveImage7();
function moveImage6()
我该如何解决?
答案 0 :(得分:0)
我相信你有一些范围问题。换句话说,您看不到moveImage6()和moveImage7()函数中使用的变量,因为它们是您的其他函数的本地变量。要解决此问题,您必须将这些变量传递给moveImage函数。您的moveImage函数通过setInterval函数定期调用,因此传递参数如下:
setInterval(function(){
moveImage6(availSpace_V, availSpace_H, image_Element);
}, changeInterval);
这还需要您更新moveImage6()和moveImage7()函数以接受这些参数。
Passing parameters with setInterval
jsfiddle: simplified in action
希望这有帮助!
PS:您可能想要将prep7()中的window_Height7更改为window_Height