Forum de discussion
Forum « Programmation Javascript » (archives)
Re: Iframe toujours visible
Envoyé: 25 juin 2004, 9h45 par muzz
[code]<!-- DEBUT DU SCRIPT -->
<SCRIPT LANGUAGE="JavaScript">
/*
SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/
ejs_logo_url = "image";
ejs_logo_redir = "lien";
if (document.getElementById)
{
var staticlogo=new Image;
staticlogo.src=ejs_logo_url;
document.write('<div id="ejs_logo" style="z-index:200;position:absolute;width:'+staticlogo.width+';height:'+staticlogo.height+'"><a href="'+ejs_logo_redir+'"><img src="'+staticlogo.src+'" border=0 ></a></div><div id="ejs_logo2" style="z-index:100;position:absolute;width:'+staticlogo.width+';height:'+staticlogo.height+';background:#000000;filter:alpha(opacity=40); -moz-opacity: .4;"></a></div>')
ejs_scx = document.body.clientWidth;
ejs_scy = document.body.clientHeight;
document.getElementById("ejs_logo").style.top=(ejs_scy-staticlogo.height-30);
document.getElementById("ejs_logo").style.left=(ejs_scx-staticlogo.width-30);
document.getElementById("ejs_logo2").style.top=(ejs_scy-staticlogo.height-25);
document.getElementById("ejs_logo2").style.left=(ejs_scx-staticlogo.width-25);
}
function logoit()
{
if (document.getElementById)
{
w2=document.body.scrollTop;
document.getElementById("ejs_logo").style.top=(w2+ejs_scy-staticlogo.height-30);
document.getElementById("ejs_logo2").style.top=(w2+ejs_scy-staticlogo.height-25);
setTimeout("logoit()",1);
}
}
window.onload=logoit
</SCRIPT>
<!-- FIN DU SCRIPT -->[/code]
J'ai remplacé tous les "logo" et "image" en "iframe". Mais aucun résultat satisfaisant. :(
Réponses
|