Forum de discussion
Forum « Programmation Javascript » (archives)
Re: Popup sans barre de titres
Envoyé: 29 mars 2005, 5h04 par tspahn
***********************************
Code de base pour un iframe :
<IFRAME src="mon_rep/mon_fichier.htm" name="nom_iframe" ID=nom_iframe class="une_classe_css" MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO FRAMEBORDER=0 STYLE="display:none;position:absolute; width:200; height:200; z-index:10; left:0; top:0;" NORESIZE></IFRAME>
*******************************
Bien sûr il faut prévoir le comportement concernant les propriétés d'affichage du iframe :
function afficher(){
document.all.nom_iframe.style.display=block;
}
function cacher(){
document.all.nom_iframe.style.display=none;
}
Par exemple : un click dans la page principale cache le iframe (ce qui simule un évènement "onblur")
</SCRIPT>
<SCRIPT FOR=document EVENT="onclick()">
cacher();
</SCRIPT>
Tout ceci doit bien sûr être adapté à votre problème, mais je crois que c'est une bonne base de travail.
Réponses
|