Zoom Effect jQuery

Bilel

New Member
I'm implementing a jQuery Zoom effect on a page. I'm trying to make the div display when the user scrolls instead of having it positioned absolute. Can anyone help me out? Here is some of the code that I am using!\[code\]#easy_zoom { width:300px; height:400px; border:5px solid #eee; background:#fff; color:#333; position:absolute; top:60px; left:400px; -moz-box-shadow:0 0 10px #777; -webkit-box-shadow:0 0 10px #777; box-shadow:0 0 10px #777; line-height:400px; text-align:center; }<p style="float:right; margin:0 -50px 0 0;"><a href="" class="zoom"><img src="http://stackoverflow.com/questions/9618965/images/24 inch/Z6xx01-Tiger.png" height="110" alt="New York"></a></p>jQuery(function($){ $('a.zoom').easyZoom();});\[/code\]
 
Top