gpt4 book ai didi

jquery - 将 Fancybox 与图像映射一起使用

转载 作者:技术小花猫 更新时间:2023-10-29 12:37:58 25 4
gpt4 key购买 nike

我想知道是否有办法将 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>

最佳答案

所以您想在带有图像映射的 fancybox 中显示单个图像?

可以通过几种方式将 map 添加到 fancybox 的图像中,

例如,您可以在图像加载后将其添加到图像中,图像将使用 id fancybox-img 加载,因此使用 oncomplete()回调我们可以访问将 map 添加到图像:

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');
}
});

See it working here


另一种方法是将内容传递给 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
});
});

See it working here


可以通过执行以下操作改进上述内容以支持多个图像和 map :

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
});
});

See it working here

注意:我在 fancybox 中添加了几个选项,就像标题一样只是为了展示如何添加选项。我还捕获了对 map 的点击,因此它没有打开 url 和警报,只是为了向您显示 map 正在运行。


根据评论更新:

啊,我误会了。在这种情况下,当用户单击 map 项时使用花式框非常简单。最简单的方法是使用 jQuery 选择器 $('map > area') 来捕获对 map 区域的任何点击。但是,如果您不希望所有区域都在花式框中打开,最好添加到您的选择器中,例如为您想要打开花式框的每个区域一个类,然后使用选择器 $( ' 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
});
});

See the example here

  • 所以在上面的示例中,我们使用 jQuery .click() 来捕获对带有 fancybox 类的 map 区域的任何点击 (您会注意到 www.ask.com 示例将在窗口中打开,另外两个在花式框中打开)
  • 我们使用 .preventDefault() 方法来阻止浏览器像往常一样跟随链接。
  • 接下来获取点击区域的url。
  • 然后获取点击区域的标题(并非真正需要,只是添加以尝试帮助展示如何获取数据)
  • 接下来我使用 rel 属性设置类型,这允许您设置您希望 fancybox 执行的操作。
  • 现在只需打开带有详细信息的花式框即可。

所以在这个例子中:

  • 区域 1 将打开一个 fancybox,它是一个包含页面的 iframe。
  • 区域 2 将打开一个带有图像的花式盒子。
  • 区域 3 将正常加载链接中的网站,不使用 fancybox。
  • 关于jquery - 将 Fancybox 与图像映射一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5530871/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com