1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title></title>
<style type="text/css">
html, body {
margin: 0px;
padding: 0px;
height:100%;
}
body, td {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -10px;
}
.footer, .push {
height: 10px;
font:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
color:#999999;
}
#LPortrait1 {
position:absolute;
left:427px;
top:230px;
width:250px;
height:12px;
z-index:1;
}
</style>
</head>
<body>
<div class="wrapper" style="height: 100%;">
<div style="top: 496px; left: 439px;" id="LPortrait1"><a href="#" id="TPortrait1">Texte</a></div>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
</td>
</tr>
<tr>
<td>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="1000">
<tr>
<td valign="top" width="600">
<img src="" id="positionner" height="364" width="571"><br>
<br></td>
<td align="center" valign="top" width="360"> </td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<div class="push"></div>
</div>
<div class="footer" align="center">Tous droits réservés</div>
<script language="Javascript">
function placeLayerPortrait() {
obj=document.getElementById('positionner');
if (obj.parentNode) {
curleft = parseInt(obj.offsetLeft);
curtop = parseInt(obj.offsetTop);
while (obj = obj.parentNode) {
if(!isNaN(obj.offsetLeft)) {
curleft+=parseInt(obj.offsetLeft);
}
if(!isNaN(obj.offsetTop)) {
curtop += parseInt(obj.offsetTop);
}
}
}
document.getElementById('LPortrait1').style.top=(curtop+230)+'px';
document.getElementById('LPortrait1').style.left=(curleft+427)+'px';
}
setInterval('placeLayerPortrait()',10);
</script>
</body>
</html> |