Hello I'm trying to create a hover zoom function with hoverIntent which works almost perfect :) because of the Isotope / Masonry js lots of the zoom-ed elements are behind the next isotope/masonry item I set the isotope/masonry items z-index to 1 but still the same. I tried to append the zoom element to another element but then the hover strated to loop and I saw a blinking image :) Now I'm out of ideas and need some advice.
this is my html:
<div id="isotope_container">
<div class="isotope_item">
<div class="image">
<a class="example2" href="#"><img src="image.jpg" /></a>
<div class="zoom">
<a class="example3" href="#"><img src="image.jpg" /></a>
<a class="hoverout" href="#"></a>
</div>
</div>
</div>
<div class="isotope_item">
<div class="image">
<a class="example2" href="#"><img src="image.jpg" /></a>
<div class="zoom">
<a class="example3" href="#"><img src="image.jpg" /></a>
<a class="hoverout" href="#"></a>
</div>
</div>
</div>
<div class="isotope_item">
<div class="image">
<a class="example2" href="#"><img src="image.jpg" /></a>
<div class="zoom">
<a class="example3" href="#"><img src="image.jpg" /></a>
<a class="hoverout" href="#"></a>
</div>
</div>
</div>
</div>
The css is simple
#isotope_container {margin: 0; padding: 0; position: relative;}
.isotope_item {margin-bottom:8px; z-index:1!important; width: 123px;}
.image {width: 123px; height: 123px; position: relative; z-index:9999;}
.image .example2 {display: block; width: 123px; height:123px; overflow: hidden;}
.image .example2 img {width: 123px; height:123px;}
.zoom {width: 200px; height:200px; position: absolute; top:-38px; left-38px; z-index: 9999; display:none; overflow: hidden;}
.zoom .example3 {display: block; width: 200px; height: 200px; overflow: hidden;}
.zoom .example3 img {width: 100%; height: 100%;}
.zoom .hoverout {width: 123px; height: 123px; position: absolute; left: 50%; top: 50%; margin-left: -61.5px; margin-top: -61.5px;}
and this is my JS function
jQuery(document).ready(function(){
$(function(){
$('.image').hoverIntent({
timeout: 0,
sensitivity: 75,
interval: 50,
over: function(){
var hoverDiv = $(this).find('.zoom');
$(hoverDiv).fadeIn('fast');
$('#isotope_container').css('overflow', 'visible');
},
out: function(){
$('.zoom').hide();
$('#isotope_container').css('overflow', 'hidden');
}
});
$('.hoverout').mouseleave(function(){
$('.zoom').hide();
$('#isotope_container').css('overflow', 'hidden');
});
});
});
the original version is uploaded to http://vasmuszaki.netkereskedes.hu/ but its code is messy and it would be hard to find the appropriate code because its still in developement :)