<script type="text/javascript">
<!--
var i, dstep;
var iheight=100;
var iwidth=200;
var step=0.01;
i=1.0;
dstep=step;
function zoomImage() {
if(i>1.5) {
dstep=-step;
}
if(i<0.5) {
dstep=step;
}
if(document.getElementById) {
document.getElementById("logoimage").setAttribute('width', iwidth*i);
document.getElementById("logoimage").setAttribute('height', iheight*i);
}
else if(document.layers) {
msg='<img src="画像URL" width="'+iwidth*i+'" height="'+iheight*i+'">';
document["subtitle"].document.open("text/html");
document["subtitle"].document.write(msg);
document["subtitle"].document.close();
}
i+=dstep;
setTimeout("zoomImage()", 100);
}
//-->
</script>
|