zoom

Safari iPad : prevent zoom on double-tap

I'm creating a site on Safari for iPad. I need to prevent the zoom on double-tapping event but I have two problems: a double tap doesn’t generate any events, so I can't use "event.preventDefault();" I need to do this only when some conditions are fulfilled, so I can't use the tag "<meta name = "viewport" content = "user-scalable = no">...

CSS zoom property

Sitepoint reference says Internet Explorer for Windows versions 5.5 and above support the non-standard property zoom, which sets the magnification scale of an element. There’s no CSS3 equivalent to this property (as yet). How can I achieve this zoom effect in standard browsers? Any jQury plugins available? ...

CATiledLayer changing images with different sizes when zooming (Map related :)

I have an UIScrollView with a UIView which in turn contains a CATiledLayer which displays a map. I have to start with an overview where one can zoom in VERY deep. So I made 4 different images (actually PDFs) with 4 different sizes of the map (the largest has something like 5700 x 6700px) I add the smallest (the overview) to the CATiled...

Zoom Controls for ImageSwitcher in Android 1.6?

Hi folks, I wish to do the Image Switcher's Touch Event. That is when i touch it, it should wake up the zoom controls. After zoomed in, the image can able the touch scroll on the image up and down. how to do it? Is there any default zoom controls? If not, tell me your suggestion, idea and also valuable links about this? make a note the ...

Working in java image

Dear All, I will explain my question clearly. I need to zoom in/zoom out the world map. When I click on the particular country in map, control should redirected to new page with respective the country. I dont have any idea about this in java. Please explain the steps to acheive the above task. ...

Zoom Control's on webview in Android?

Hi Folks, I have a two views. one is webview and another is a imageview. i set the auto zoom controls for the webview. like: webview.getSettings().setBuiltInZoomControls(true); i just changing visibility of both views using GONE and Visible. While changing my view form webview to image view, the zoom controls not lost is visibility f...

Android - Animating Layers in Canvas

I'm trying to get to grips with using 'Canvas' in Android. I'm using SDK 1.5. I've been able to rotate text, but the background gets rotated as well. Ideally, I'd like to be able to put my background image on one layer and rotate text (or zoom text) on a second layer. How would I go about creating different layers on the Canvas? And ...

Zooming into a Clutter CairoTexture while re-drawing.

I am using python-clutter 1.0 My question in the form of a challenge Write code to allow zooming up to a CairoTexture actor, by pressing a key, in steps such that at each the actor can be re-drawn (by cairo) so that the image remains high-res but still scales as expected, without re-sizing the actor. Think of something like Inkscape a...

Magnifying-effect on animating Flash

I have this detailed animation that ended up being too small for the viewer to see whats going on. So my question is if it is possible to make a zoomed-area where the cursor goes (like a magnifying glass). I have found tons of tutorials on this effect with still images, but so far non on how to do it with moving animation. PS. I'm usin...

How can I group MKAnnotations automatically regarding zoom level?

if the user zooms out on a MKMapView, i want MKAnnotations which are near to each other automatically grouped into one "group" annotation. if the user zooms back in, the "group" annotation should be split again to the unique/original annotations. apple does this already in the iOS 4 Photos.app is there a common, "predefined" way to do ...

android zoomable listview

is there any way to make a listview zoomable? or at least make the content able to be zoomed in on? ...

preventing zooming at some limit

Hi friends In my ipad openGL based application I am drawing a 2D and 3D object and rotating it according to the user's finger motion....On pinching the screen user is enable to zoom those objects...But what I want is to prevent zooming the object at some limit, say more than 2x of the object size user cannot zoom in and user cannot zoom...

how to set zoom level using css

I have been developing my webapp with a certain zoom level on firefox that I set initially (using ctrl+wheel). Now when tested on a different PC on firefox, the default 100% seems to be too big. Can I set default using css? ...

Zooming the graphics in Qt

I use QGraphicsiew and QGraphicsScene in order to draw graphics. How can I organize zoom-in and zoom-out (during zooming in scrolls should appear and while zooming out scrolls should disappear)? ...

How to reset UIWebView's zoom? I'm already using scalesPagesToFit = YES;

Hi guys, I've been looking for the past week for the answer to this question. I have a UIWebView, inside of a UIScrollView. Everything works great, but I want the content of the UIWebView to reset its zoom, when the orientation changes. In the HTML inside the UIWebView, I set the width of the viewport (w/ a meta tag) to "device-width"...

Does anyone know of a jQuery magnification plugin for embedded pdf objects?

So far all the zoom of magnifying plugins I have found are for images and I need something that will work when hovered over an embedded object tag .pdf file. Any ideas? ...

UIScrollView pinch to create a larger zoom effect

Hi, I'm using a regular UIScrollView. How can I make the pinch-out gesture create a larger zoom? let's say two-times the zoom I get today... 10x ...

Android Webview Zoom Density

I would like to set the zoomlevel on my WebView (WebChromeClient). According to the API WebSettings holds a static method ZoomDensity that should do the trick but I just can't make it work. It looks like WebSettings does not have the method, Content Assistant does not suggest it or show it to me.. Neither the Webview or the WebSettings...

Does anybody know of a jQuery plugin that can do something like this: http://www.pronovias.com/

Does anybody know of a jQuery plugin that can do something like this: http://www.pronovias.com/ I mean when i hover over it while sliding pictures. i want to zoom in it and zoom out. if doesn't exist plugin like this, how do i write? this is what i have done. can any one replace with the correct one with ie support? <!DOCTYPE html...

How to implement zoom on doubleclick in webview in iphone?

Hello I have loaded a HTML page in a web-view.But on double click of the web-view its not zooming.I have also set the "scalesPageToFit" property to "YES" also ,but i am not able see the zoom effect in web-view. CGRect webFrame = CGRectMake(0, 0, 320, 480); webView = [[UIWebView alloc] initWithFrame:webFrame]; webView.backgroundColor ...