chrome で動作しない画像の JavaScript ボタンがあります。
よろしくお願いします!
コードは次のとおりです。
ポップアップを非表示にするだけです:
編集 :
閉じるには、この関数を使用していますが、非表示にするだけです
function hideBulle() {
$("bullepopup").style.display="none";
hideoverlay();
}
そして、これが1つのボックスとこのボタンを作成するためのコードです
function showBulle(obj) {
showoverlay();
coo = $("content").getPosition();
$("bullepopup").style.width = "555px";
$("bullepopup").style.height = "555px";
$("bullepopup").position({x: (coo.x+((650-555)/2)), y: (coo.y+(440-250)/2)});
$("bullepopup").style.display="";
$("bullepopup").set('html','');
new Element('img',{src:'images/br588.gif',styles: {float:'right',cursor:'pointer'},
events: {
click: function(){
hideBulle();
}
}
}).inject($('bullepopup'));
new Element('br').inject($('bullepopup'));
new Element('div',{html:obj.get('html')}).inject($('bullepopup'));
}
function hideBulle() {
$("bullepopup").style.display="none";
hideoverlay();
}
前もって感謝します!