您的位置:首页 > Web前端 > JavaScript

A site provide JavaScript Graphics Library

2006-04-12 14:22 197 查看
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;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息