0
votes
1answer
26 views

Zoom in/out events in jQuery

I simply want a function that show alert on zoom in window saying like "you zoomed in" and on zoom out saying like "you zoomed out", I searched for this function for lot of time but every time I ...
-4
votes
0answers
19 views

jquery plugin for zoom image and handle mouse events [closed]

There are image zoom jquery plugins. Unfortunately it's hard to find handle mouse click events for zoomed images I want handle mouse click events for zoomed images with map and href. Does anyone know ...
0
votes
1answer
40 views

JavaScript zoom image and center viewable area

I'm trying to create a zoom able image upon click of a button, however the image should be zoomed centered on the view able area, as the image may be bigger than the container. I've created a fiddle ...
1
vote
1answer
48 views

Combining Swinxyzoom plugin with Fancybox in Wordpress

What I'm trying to achieve is to activate the Swinxyzoom Wordpress plugin (which uses jQuery to allow the user to zoom into a part of an image) within a Fancybox lightbox on a responsive website. ...
-2
votes
0answers
33 views

Draw rectangles on image and allow zoom after [closed]

Please help, My web app needs to display an image, Draw a number of rectangles over some (x,y) points of the image, Let the user zoom in/out with the mouseover event on the image parts with the ...
0
votes
2answers
67 views

HTML parsing / checking for certain value of certain attribute of certain tag [duplicate]

How can I, with JavaScript, check if a webpage has any of the following: <meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1, user-scalable=no" /> <meta ...
0
votes
0answers
39 views

jqzoom set margins to large image

As you can see below in picture, jqzoom set margins left and bottom of large image. Here is my jqzoom javascript: <script type="text/javascript"> $(document).ready(function () { ...
0
votes
0answers
34 views

swinxyzoom is too slow on touch devices, how i can optimize this?

I integrated the plugin to zoom in on images loaded dynamically, the problem is that in doing so the plugin works very slow, any ideas to make it optimal?, My code where I add is this: ...
0
votes
0answers
28 views

Animation css3 by scroll

I have to put several stages/divs with animation of transform3d inside by scroll. This is first stage (zoom layers in z axis) http://jsfiddle.net/wezyr512/DkCrg/2/ Made by this tutorial: ...
0
votes
1answer
74 views

CSS zoom - can only get this (jQuery) script to work in Chrome

I am using CSS zoom to zoom the outer container to match either the height or width (depending on browser window aspect ratio). It works perfectly in Google Chrome. I don't even need to use a '*' ...
0
votes
0answers
44 views

Zoomable image in non-zoomable web-app

I am currently developing a responsive site that displays perfect on smartphones. As there will be lots of user-generated images on the site, I have implemented my own very lightweight lightbox-script ...
0
votes
4answers
83 views

Jquery size text

I've created a script which is supposed to increase or decrease the size of the text (shown below) but the problem is that the text is remaining the same size when I click on one of the images and ...
0
votes
1answer
176 views

How to prevent doubletap zoom in iOS and Android

I am building a web app using Jquery Mobile for use on a desktop, iPad and Android phone. I want the user to be able to tap a button to increment (or decrement) a value. My code works fine on a ...
0
votes
0answers
268 views

jQuery plugin : Fancy Zoom implementing href on zoom in image

Im using jQuery plugin : Fancy Zoom, everything is working perfectly fine. The only issue is that I need to add an anchor tag on the zoomed in image. /** * jQuery fancyzoom plugin. * This is an ...
0
votes
1answer
124 views

How do I make a parent container adjust it's height to match a scaled div

I'm using jQuery to dynamically scale and zoom a div based on the dimensions of the parent container. However, I'm having a difficult time detecting the height. I have the parent set to auto, but it ...
0
votes
1answer
97 views

Zooming on click of large image to the coordinates of the click

So I have a large jpg, 12000px wide by 1000px height. I am looking to make a site the has the image at 50% size on page load, but when the user clicks on the image once, it zooms in to 100%, then on a ...
1
vote
1answer
294 views

Zoom to particular area in svg using mouse wheel

I have a simple svg map embedded in my asp.net site. I want to zoom-out and zoom-in that map using mousewheel. I have somewhat achieved zoom functionality using mousewheel.js. But the problem is, i ...
0
votes
1answer
263 views

jQuery Zoom inside a colorbox

Is it possible to use the jQuery Zoom plugin from Jack Moore inside a colorbox? $(document).ready(function(){ $('a.photo').zoom({url: 'photo-big.jpg'}); });
0
votes
1answer
29 views

Zoom prevention not working

I'm trying to prevent zoom with the meta viewport and also event.prevent default() for the pinch event. My ultimate goal is to run a function on pinch in and another function on pinch out, but that ...
0
votes
0answers
38 views

Zoom - position of zoomed element, nothing displayed

I have few problem with zoom... When I use IE 10, it shows after zoom only div with text and no images... do you know, what might be bad? Second problem is, that if I zoom it in other browser, the ...
0
votes
1answer
67 views

Zooming stops working using highstock chart after updating jQuery,

I am using highstock chart version v1.2.5 and highchart v2.3.5 with jQuery 1.5.1. I have to work with next version of jQuery 1.7.2. Mostly everything work correct instead of zooming. It is stopped to ...
1
vote
0answers
125 views

Can't fix a conflict between CloudZoom v1.0.3 and the default Bootstrap v2.3.1 Carousel

Bootstrap carousel and cloud zoom work but only with the first image. Here is a demo displaying the problem… ...
0
votes
1answer
199 views

How to zoom in / out depending on browser height, using CSS zoom property? [closed]

I have a website containing a large square (same height as width). I would like the square to always have 95% of the browser window height as its height. But I don't want to actually change the ...
0
votes
1answer
184 views

Javascript zoom on hover without thumbnails

I am looking for a javascript zoom library, similar this However, most ones out there require that you have thumbnails images for the unzoomed image which is a bit of an annoyance for me since I am ...
0
votes
0answers
292 views

How do I use jQuery to make my images zoom in even if they are different sizes?

I have relatively simple question. The code below allows me to zoom in on an image at 20% and sliding text comes up when I hover over it. What I would like to do is extend the code so I can access ...
-1
votes
1answer
154 views

automatic browser zoom on load [duplicate]

Is it possible to set the browser zoom on a webpage I'm making to say 75% automatically on load with javascript? if so how can you do this? I've googled but haven't really found anything. thanks.
0
votes
1answer
112 views

Google Maps, scale circle based on Zoom

I have a google map with circles being displayed, using a radius that scales down using the index of a data set (1, 2, 3, 4..): var radiusTest = 1 - (mapDataTrending[i].index) * .1; var ...
0
votes
0answers
61 views

Jquery Zoom with Tooltips function

I need to set up a zoom function on a map that also has a tool tip ability once zoomed in. So far I can't seem to create this. I found this question: tooltip for zoomed image map in IE9 Which I think ...
1
vote
0answers
46 views

Zoom in/out in a container

I want to implement a system to zoom in/zoom out a container div in "real time" with javascript.The container contains different subdivs which are connected through a line using the jsPlumb library My ...
0
votes
0answers
43 views

Table data overflows on zoom

I have a table inside a <div>. The div contains a box .. Now i have applied zoom feature to the table alone using an external plugin hammer.js. So when i zoom my table, it overflows outside ...
0
votes
0answers
72 views

Issue with plugin jquery.zoom

I've got an image-gallery with mouseover zooming in modal window. When document's ready I initialize plugin jquery zoom like this: $('.slider img').wrap('<div></div>').each(function(){ ...
0
votes
1answer
180 views

How to check zoom level is below 100% (ctrl and - ) in each browser?

In the browser by default the user can either use ctrl +/- or ctrl scroll to zoom in or zoom out the page. I would like to know is there any way to check the zoom level is below 100% and not doing ...
1
vote
0answers
161 views

jQuery Draggable with Zoom on Element instead of Container

I have a similiar problem to this and this, the difference is that the zoom is on the draggable element and not on the container. I copied the jsFiddle provided on the second question mentioned above ...
1
vote
2answers
287 views

Any way to auto zoom browser based upon user's browser window?

Is there any way to (across browsers) cause my website to auto zoom based on the user's browser window. I have a web app that is a fixed aspect ratio. It needs to be this way as the central function ...
0
votes
1answer
101 views

Jquery preventDefault() on Android zoom snippet

I have some event binded to a link, for example: <a class='mylink' href='01'>My Link</a> $(document).on('touchstart', '.mylink', function(e){ e.preventDefault(); ...
0
votes
1answer
305 views

Looking for a jquery zoom plugin, just like on zara.net [closed]

I'm looking for a jQuery plugin, just like on this website: http://goo.gl/ILQ0q. Just click on an image and you'll see the effect, what I need.
0
votes
0answers
162 views

css transform scale - zooming image

I want create zoomed image, I have found this code: <div style="position:relative;top:0;left:0;background:url('image.jpg');width:800px;height:600px;"> </div> and jquery ...
2
votes
2answers
382 views

Allowing Pinch to Zoom with jQuery.Wipetouch

I'm using the jQuery.Wipetouch plugin to allow swiping gestures to navigate a slideshow. However, the iPad's native pinch-to-zoom functionality is now broken, because any swiping gestures ...
0
votes
0answers
965 views

jQuery zoom in/zoom out [closed]

I want to draw a calendar with all 12 months in one html page and I want to have a zoom in on left mouse click and zoom out on right mouse click on one month, how can I do that with jQuery? Here is a ...
1
vote
1answer
321 views

I need help selecting a jQuery Zoom Image Map

I need help selecting a Jquery plugin that respect this requirements, it is a city map: Design: Don't want to use Google Maps or similar, I want to use a custom Background Image Regions: I need to ...
0
votes
0answers
113 views

Issue with JQuery pinch zoom

Hi I am working in JQuery i want to pinch zoom the image. I have tried lot of things but couldn't get anyway out of this. My code is. $(document).bind('mobileinit', function(){ ...
1
vote
1answer
84 views

select of alternative route reduces zoom

I'm using google maps api v3 and jquery mobile. I have a page where tab1 shows the map with the route and tab2 shows the route details (setPanel) . When i call setDirections for the response ...
0
votes
2answers
760 views

Highcharts / Highstock scroll bar and Zoom issue

I managed to enable a scroll bar in Highcharts as suggested here. Now I am struck with strange problems. Reset Zoom button is not shown after zooming the chart. But when i disabled scroll in my ...
0
votes
2answers
265 views

Image magnifier issue on IE9 cloud zoom plugin extension for joomla

I have been using a plugin for joomla name cloud zoom, it's a plugin that provides our gallery the capability to create an image magnify effect when you hover over the large image on this link ...
0
votes
2answers
658 views

Disable zoom in browser using jquery / javascript?

I would like to block the user from using anyway to zoom the website content. eg. ctrl + scroll/ select in the browser option. Are there any way to disable the zoom function in browser with the use of ...
-4
votes
1answer
343 views

Jquery Map of US with Drilldown of States [closed]

I am currently using jVectorMap but would like to have the state get zoomed in when clicked. Is there a plugin or library that allows this to happen? I am willing to pay for commercial map software ...
1
vote
2answers
159 views

How to do browser zoom in effect on click

I want to add a browser zoom effect when a user clicks on a button. This is for elderly people so they can zoom in on the text to make it easier to read. I dont want to make the actual text bigger as ...
0
votes
2answers
146 views

How to calculate the origin that starting zoom using jQuery?

Currently the zooming action is illustrate like the top graph. I would like to achieve the zoom action in bottom graph. The point is the zoom origin .Currently the codes are: ...
7
votes
2answers
476 views

Draggable area is not correct after image is zoom using Jquery

I am using jquery.viewport to create an viewport function: I use jquery ui to create slider and a own written zoom function to zoom the image. Also, using this plugin to create viewport function. ...
0
votes
0answers
90 views

Gmap3 zoom doesn't change

I just update my gmap3 library to the last version and now I have this problem. The marker is placed correctly but the zoom value is ignored. I see the entire world map, not just the location where ...

1 2 3 4