Сообщение от kolobku_xxx
|
это как?)
|
это так
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<script>
window.onload = function make_bigger_banner() {
var big_width = 1920;
var big_height = 831.0042;
var banner_width = +document.getElementById('img_banner').width;
var banner_heigth = +document.getElementById('img_banner').height;
if ( banner_width < big_width && banner_heigth < big_height ){
document.getElementById('img_banner').width += banner_width*0.1;
document.getElementById('img_banner').height += banner_heigth*0.18;
setTimeout(make_bigger_banner, 100);
}
}
</script>
</head>
<body>
<div id="picture">
<img id="img_banner" src="http://javascript.ru/forum/images/ca_serenity/misc/logo.gif" alt="Песик на матрасе"/>
</div>
</body>
</html>
http://javascript.ru/formatting.