当我使用Mark Hagan Facebook墙贴的源代码时,它给我的错误就像长度不能为零。
即时尝试使用用户登录Facebook帖子。 这是我的代码请帮帮我,这段代码有什么问题..?
var outer, inner, width, interval, height;
inner = document.querySelector(".inner");
width = 0;
height = 0;
window.addEventListener("load", function () {
interval = setInterval(function () {
if (width >= 200 && height >= 200) {
inner.textContent = "100% Completed";
clearInterval(interval);
}
else {
width += 3.333;
height += 3.333;
inner.style.width = width + "px";
inner.style.height = height + "px";
}
}, 1000);
});
帮助!!!在此先感谢。