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,
それを機能させることができないようです。
そのページはこれです:リンク
おそらく、残りのコードも役立つでしょう。
アイデアはありますか?