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
| <!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
margin: 0px;
padding: 0px;
text-align: center;
}
img {
margin: 0px;
padding: 0px;
vertical-align: bottom;
}
</style>
<script>
ajuster=function() {
var H=window.innerHeight,
L=Math.floor(l*window.innerHeight/h),
E=0;
if (L>window.innerWidth) {
H=h*window.innerWidth/l;
L=window.innerWidth;
E=Math.floor(window.innerHeight/2-H/2);
}
image.width=L;
image.height=H;
image.style.marginTop=E+"px";
}
onload=function() {
image=document.getElementsByTagName("IMG")[0];
h=image.height;
l=image.width;
ajuster();
};
onresize=ajuster;
</script>
</head>
<body><img src="image.jpg"></body>
</html> |
Partager