我正在尝试在我的网站上加入一个新的幻灯片。除了“height =”80%“”选项外,幻灯片有我需要的一切,即我希望幻灯片随浏览器缩放,因为新的网站设计有点像 android 应用程序;完全身临其境。
因为幻灯片本身没有这个选项,所以我正在创建一个 JavaScript 代码,它将每 2 秒检查一次文档/浏览器窗口的大小,并重新加载/调整幻灯片本身的大小,使其始终适合屏幕。但是,问题是javascript只会运行一次,onload,并且在我将某个代码字符串粘贴到脚本后不会调用“setTimeout”。
所以,问题是 setTimeout 实际上停止了工作,所以它之前工作过,在我包含以下代码字符串之后:
var thescript = document.createElement("script");
thescript.type = "text/javascript";
thescript.innerHTML="jQuery.flashgallery('gallery/ArtGallery.swf', 'gallery/gallery.xml', {width: '100%', height: '"+calcheight+"px', background: '#000000'});";
document.getElementById('galleryid').appendChild(thescript);
完整的 javascript 检查功能在这里:
function getDocSpecs() {
clearTimeout(t);
var D = Math.max(
Math.max(document.body.scrollHeight, document.documentElement.scrollHeight),
Math.max(document.body.offsetHeight, document.documentElement.offsetHeight),
Math.max(document.body.clientHeight, document.documentElement.clientHeight));
var Le = Math.max(
Math.max(document.body.scrollWidth, document.documentElement.scrollWidth),
Math.max(document.body.offsetWidth, document.documentElement.offsetWidth),
Math.max(document.body.clientWidth, document.documentElement.clientWidth));
calcheight = (0.80 * D);
alert(preheight + "_" + prewidth + "_" + D + "_" + Le + "_");
if (preheight != D || prewidth != Le) {
var thescript = document.createElement("script");
thescript.type = "text/javascript";
thescript.innerHTML = "jQuery.flashgallery('gallery/ArtGallery.swf', 'gallery/gallery.xml', {width: '100%', height: '" + calcheight + "px', background: '#000000'});";
document.getElementById('galleryid').appendChild(thescript);
}
preheight = D;
prewidth = Le;
t = setTimeout('getDocSpecs()', 2000);
}
这两个人似乎不喜欢对方:
var thescript = document.createElement("script");
thescript.type = "text/javascript";
thescript.innerHTML="jQuery.flashgallery('gallery/ArtGallery.swf', 'gallery/gallery.xml', {width: '100%', height: '"+calcheight+"px', background: '#000000'});";
document.getElementById('galleryid').appendChild(thescript);
和
t = setTimeout('getDocSpecs()', 2000);
我试图通过先加载幻灯片然后调用函数、添加点击激活文本、调用多个函数等来欺骗它。