所以我已经玩了一段时间,但是无法从jqzoomed元素中获取绑定的点击事件。
HTML:
<div class="product-clicktozoom-image">
<div class="product-clicktozoom-image-main">
<a href="http://example.com/image.jpg" class="jqzoom" title="Image" rel="gall"><img itemprop="image" id="mainimage" src="http://exampe.com/image.jpg" alt="Image" title="Image"/></a>
</div>
</div>
JS:
jQuery(document).load(function() {
jQuery('#mainimage').bind('click',function(){
var fancyImage = jQuery('#mainimage').attr('src');
jQuery.fancybox.open(fancyImage);
});
});
jqzoom创建了一些额外的div,所以最终的页面结构实际上是这样的:
<div class="product-clicktozoom-image-main">
<a href="example.com/image.jpg" class="jqzoom" title="" rel="gall" style="outline-style: none; text-decoration: none;">
<div class="zoomPad">
<img itemprop="image" id="mainimage" src="http://example.com/image.jpg" alt="Image" title="Image" style="opacity: 1;">
<div class="zoomPup" style="display: none; top: 105px; left: 145px; width: 126px; height: 126px; position: absolute; border-width: 1px;"></div>
<div class="zoomWindow" style="position: absolute; z-index: 5001; cursor: default; left: 0px; top: 0px; display: none;">
<div class="zoomWrapper" style="border-width: 1px; width: 355px; cursor: crosshair;">
<div class="zoomWrapperTitle" style="width: 100%; position: absolute; display: none;"></div>
<div class="zoomWrapperImage" style="width: 100%; height: 355px;">
<img src="http://example.com/image.jpg" style="position: absolute; border: 0px; display: block; left: -411.26760563380276px; top: -298.5915492957746px;">
</div>
</div>
</div>
<div class="zoomPreload" style="visibility: hidden; top: 156px; left: 132.5px; position: absolute;">Loading zoom</div>
</div>
</a>
</div>
我已尝试将click事件与zoomPad类以及zoomWrapperImage元素中的img绑定到#mainimage,因为当鼠标悬停在图像上时,它似乎是顶部元素。
我想要做的就是在fancybox中打开完整图像,如果他们点击缩放(目前鼠标悬停时发生缩放)。我知道fancybox.open(fancyImage);工作,我可以直接在控制台中成功运行点击功能中的代码,我只是无法从点击事件本身触发它。
帮助!
答案 0 :(得分:2)
最终结果非常简单,click事件需要绑定在.zoomPad上,我使用window.load代替(document).ready,因为它确保所有元素都已加载。
最终JS:
jQuery(window).load(function() {
jQuery('.zoomPad').bind('click',function(){
var fancyImage = jQuery('.zoomWrapperImage img').attr('src');
jQuery.fancybox.open([{href : fancyImage}], {closeClick : true});
});
});