You can see the detail in this site:
http://www.walterzorn.com/jsgraphics/jsgraphics_e.htm
Very cool.
And this function is to change the zoom of the page. You can find it when you doubleclick in the page.
function ZOOM()
{
if (document.body && document.body.style && typeof document.body.style.zoom != "undefined")
{
if (document.body.style.zoom=="400%")
document.body.style.zoom = "100%";
else
{
document.body.style.zoom = "400%";
alert('You/'ve doubleclicked on the document./nDoubleclick again to unzoom.');
}
}
}
document.ondblclick=ZOOM;
本文介绍了一种通过JavaScript实现网页缩放效果的方法。当用户双击页面时,页面会在100%和400%的缩放比例间切换。此外,提供了用于实现该功能的具体JavaScript代码。

被折叠的 条评论
为什么被折叠?



