我想知道是否有办法将fancybox用于图像地图?
<img src="\path\" usemap="#Map">
<map name="Map" id="Map" >
<area shape="poly" coords="0,0,0,328,145,328" href="#" />
<area shape="poly" coords="0,0,180,0,328,328,142,328" href="#" />
<area shape="poly" coords="328,328,328,0,180,0" href="#" />
</map>
答案 0 :(得分:22)
所以你想在带有图像映射的fancybox中显示单个图像吗?
可以通过几种方式将地图添加到fancybox的图像中,
例如,您可以在加载后将其添加到图片中,图片将使用ID fancybox-img
加载,因此使用oncomplete()
回调我们可以将图片添加到图片:
<强> HTML:强>
<a href="/path/to/large/image" class="fancybox" title="Single image with a map">
<img src="/path/to/small/image"/>
</a>
<map name="Map" id="Map">
<area shape="poly" coords="0,0,0,328,145,328" href="#" />
<area shape="poly" coords="0,0,180,0,328,328,142,328" href="#" />
<area shape="poly" coords="328,328,328,0,180,0" href="#" />
</map>
<强> jQuery的:强>
$("a.fancybox").fancybox({
'titleShow': true,
'titlePosition': 'inside',
onComplete: function() {
$('#fancybox-img').attr('usemap', '#Map');
}
});
另一种方法是将内容传递到fancybox:
<强> HTML:强>
<img src="/path/to/small/image" />
<map name="Map" id="Map">
<area shape="poly" coords="0,0,0,328,145,328" href="#" />
<area shape="poly" coords="0,0,180,0,328,328,142,328" href="#" />
<area shape="poly" coords="328,328,328,0,180,0" href="#" />
</map>
<强> jQuery的:强>
$("img").click(function() {
var url = $(this).attr('src');
var content = '<img src="'+url+'" usemap="#Map" />';
$.fancybox({
'title' : 'Single image with a map',
'titlePosition': 'inside',
'content' : content
});
});
通过这样做,可以改进以上内容以支持多个图像和地图:
HTML:
<img src="/path/to/small/image" rel="#Map" title="Single image with a map 1" class="fancybox" />
<br />
<img src="/path/to/second/small/image" rel="#Map" title="Single image with a map 2" class="fancybox" />
<br />
<img src="/path/to/non/fancybox/image" />
<br/>
Try clicking image to enlarge....
<map name="Map" id="Map">
<area shape="poly" coords="0,0,0,328,145,328" href="#" />
<area shape="poly" coords="0,0,180,0,328,328,142,328" href="#" />
<area shape="poly" coords="328,328,328,0,180,0" href="#" />
</map>
<强>的jQuery 强>:
$("img.fancybox").click(function() {
var url = $(this).attr('src');
var map = $(this).attr('rel');
var title = $(this).attr('title');
var content = '<img src="' + url + '" usemap="'+ map + '" />';
$.fancybox({
'title': title,
'titlePosition': 'inside',
'content': content
});
});
注意:我在fancybox中添加了几个选项,就像标题一样,只是为了展示如何添加选项。我也抓住了地图上的点击,因此它没有打开网址,只是为了向您显示地图是否正常工作。
根据评论更新:
啊,我误解了。在这种情况下,当用户点击地图项时,使用fancybox非常简单。最简单的方法是使用jQuery选择器$('map > area')
来捕获地图区域的任何点击。但是,如果您不希望所有区域在fancybox中打开,最好添加到您的选择器,例如,为每个区域打开一个类,然后使用选择器$('map > area.fancybox')
:
<强> HTML:强>
<img src="/path/to/image" usemap="#Map" />
<br />
Try clicking image map.....
<map name="Map" id="Map">
<area shape="poly" coords="0,0,0,328,145,328" href="http://www.google.com" class="fancybox" title="Google" rel="iframe" />
<area shape="poly" coords="0,0,180,0,328,328,142,328" href="http://farm6.static.flickr.com/5177/5574889454_b0a8c7845b.jpg" class="fancybox" title="EBR 1190 Typhon hits the track" rel="image" />
<area shape="poly" coords="328,328,328,0,180,0" href="http://www.ask.com" />
</map>
<强> jQuery的:强>
$('map > area.fancybox').click(function(e) {
e.preventDefault();
var url = $(this).attr('href');
var title = $(this).attr('title');
var type = $(this).attr('rel');
$.fancybox({
'title': title,
'titlePosition': 'inside',
'href' : url,
'type' : type
});
});
.click()
来捕获地图区域上的任何点击,使用类fancybox (您会注意到www.ask.com示例将在窗口中打开,其他两个在fancybox中打开)。.preventDefault()
方法停止浏览器跟踪链接,就像通常那样。rel
属性设置类型,这样您就可以设置您希望fancybox执行的操作。所以在这个例子中: