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
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>test</title>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
</head>
<body>
<script type="text/javascript"> var top, res = screen.height;
alert(res);
switch(res) {
case 800 :
top = 20; alert('ici');
break;
default :
top = 60;
break;
}
document.body.innerHTML +='<div style="position: absolute; top:'+top+ '%">';
</script>
<p>coucou</p>
</div>
</body>
</html> |