I want to implement a zoom using two 'div's (a 'container' and a 'content' div) Demo: http://jsfiddle.net/FqJxq/32/ (mouse scroll: zoom in, double click: zoom out)
My problem is that after zoom, the 'content' div is anchored to the top-left corner of the 'container'. I want the image to zoom centered on the mouse position. And, the 'container' should always be filled with the image (never shows empty space around the image, never lets 'content' leave the 'container'). Thanks for any help.
HTML:
<div id="container">
<div id="content">
<img src="http://www.photographyblogger.net/wp-content/uploads/2010/05/flower3.jpg" width='300' height='300'/>
</div>
</div>
CSS:
#container{
overflow: hidden;
width: 300px;
height: 300px;
}
#content{
position: relative;
}
jQ;
var scale=30;
var level=1;
$('#content').bind('DOMMouseScroll mousewheel', function(e){
$("#content").animate({
'zoom':'+='+scale+'%',
//'top' :'-='+scale+'%',
//'left':'-='+scale+'%'
},100);
level++;
});
$('#content').dblclick( function(e){
if (level>1){
$("#content").animate({
'zoom':'-='+scale+'%',
//'top' :'+='+scale+'%',
//'left':'+='+scale+'%'
},100);
level--;
}
});
<img src="http://www.photographyblogger.net/wp-content/uploads/2010/05/flower3.jpg" width='300' height='300'> </img><-- Oh dear, what's that? Before jumping to javascript, review HTML / CSS (and remove</img>, close it like:/>) I hope it was unintentional. – Roko C. Buljan May 4 '12 at 20:45