Problème taille popup selon navigateurs - HTML/CSS - Programmation
Marsh Posté le 22-10-2010 à 16:32:22
PS : je ne comprends pas [par exemple] pourquoi ce site lui [plein de popup] tourne parfaitement sous tous les navigateurs : http://www.atelierwm.com/
Marsh Posté le 22-10-2010 à 16:21:39
Bonjour,
j'ai fait une page avec une seule popup dont j'ai fixé les dimensions [qui sont identiques à celles de l'image contenue dans la popup].
Mon problème est que ça passe comme je veux sous Safari, mais pas sous les autres navigateurs...
Quelqu'un pourrait-il m'aider?
Mon code [page index.html] :
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<script language="JavaScript">
window.onload = maxWindow;
function maxWindow()
{
window.moveTo(0,0);
if (document.all)
{
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById)
{
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth)
{
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>titre</title>
<link href="style.css" rel="stylesheet" type="text/css">
<script language="javascript" src="js/inframe.js"></script>
<style>
body {
margin-left: 80px;
margin-right: 0px;
width: 800px;
margin-top: 80px;
margin-bottom: 0px;
}
#apDiv1 {
position:absolute;
left:198px;
top:259px;
width:235px;
height:3px;
z-index:1;
color: #000000;
background-color: #000000;
}
.Style2 {
font-family: Didot;
font-size: 14px;
}
.Style4 {font-family: Didot}
.Style6 {font-size: 12px}
.Style7 {font-size: 10px}
</style>
<script type="text/javascript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head><body>
<div class="titrehome" id="textepopup" style="cursor: pointer;" onClick="MM_openBrWindow('popup.html','nom','scrollbars=yes,width=1098,height=315,left=80,top=250');">
<p align="left"><span class="Style2">lien</span><br>
</p>
</div>
</body>
</html>
Mon code [page popup.html] :
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>titre</title>
</head><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">
<a href="lien_de_mon_image.jpg"><img src="mon_image.jpg" height="315" width="1098"></a>
</body></html>
Merci par avance.
Je suis novice en code et je galère.