Click here to Skip to main content
15,911,141 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to provide zooming functionality for asp.net panel/div using javascript
Posted

Use following javascript tools:

•jQZoom
•Zoomimage - jQuery plugin
•jQuery ImgZoom
•FancyBox

google will help you searching them.
 
Share this answer
 
You asked this question some one month back: provide Zoom in and Zoom out for asp.net panel contol[^]

Based on what you ask, there is nothing specific like zooming a panel.
You can zoom images and Microsoft has an AJAX control for the same: Ajaxtoolkit: Seadragon control with default properties[^]
 
Share this answer
 
C#
function zoomIn()
{
    //alert("in");
    var Page = document.getElementById('body');
    var zoom = parseInt(Page.style.zoom) + 50 +'%'
    Page.style.zoom = zoom;
    return false;
}
function zoomOut()
{
    //alert("out");
    var Page = document.getElementById('body');
    var zoom = parseInt(Page.style.zoom) - 50 +'%'
    Page.style.zoom = zoom;
    return false;
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900