jquery - let child dom element out of bounds of the parent div with html and javascript on hover -


it hard summarize in title question more info here...

i have image-gallery consisting of list element images (and span display text label). html layout looks this:

            <div class="caracteristics_list gallery">                  <ul class="thumb">                     <li><a href="#"><span class="video">play</span><img src="images/gallery1.jpg" alt="" /></a></li>                     <li><a href="#"><img src="images/gallery1.jpg" alt="" /></a></li>                     <li><a href="#"><img src="images/gallery1.jpg" alt="" /></a></li>                     <li><a href="#"><img src="images/gallery2.jpg" alt="" /></a></li>                     <li><a href="#"><img src="images/gallery2.jpg" alt="" /></a></li>                     <li><a href="#"><img src="images/gallery2.jpg" alt="" /></a></li>                     <li><a href="#"><span class="tagline">lorem ipsum</span><img src="images/gallery3.jpg" alt="" /></a></li>                     <li><a href="#"><span class="tagline">lorem ipsum</span><img src="images/gallery3.jpg" alt="" /></a></li>                     <li><a href="#"><img src="images/gallery3.jpg" alt="" /></a></li>                     <li><a href="#"><img src="images/gallery3.jpg" alt="" /></a></li>                     <li><a href="#"><img src="images/gallery4.jpg" alt="" /></a></li>                     <li><a href="#"><img src="images/gallery4.jpg" alt="" /></a></li>                 </ul>                                 </div> 

this gallery has zoom effect (taken guide (demo))

the catch here gallery has fixed width, , height , overflow: scroll (it not grow, contained within bounds of gallery div).

that means, zoom effect cut of overflow css settings.

an example of have (with broken images though) can seen on jsfiddle here.

i fear overflow constraint make method impossible, unless take element out of gallery div, , position @ same spot, absolute or relative.

but first want make sure way go. have ideas?

don't take out image, make copy of , show out of div. destroy object when needs closed


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -