我已经尝试编辑Shutter Reloaded脚本,只需在按下调整大小按钮时添加一些CSS,但我无法让它工作,因为我的javascript知识很糟糕。这就是我所做的事情:
Resize : function(ln) {
if ( this.resizing ) return;
if ( ! this.I('shShutter') ) return;
var W = this.I('shWrap');
if ( W ) W.style.visibility = 'hidden';
window.setTimeout(function(){shutterReloaded.resizing = null},500);
window.setTimeout(new Function('shutterReloaded.VP = null;shutterReloaded.Make("'+ln+'");'),100);
this.resizing = true;
document.getElementById("colour").style.property=display="none";
},
我想在display: "none";
添加:div #colour,
,但似乎无法让它发挥作用。
它的页面是:Link
其他代码也可能有所帮助:
有什么想法吗?
答案 0 :(得分:0)
你快到了,试试这个:
document.getElementById("colour").style.display="none";