首页 > 解决方案 > FancyBox - 单击时交换图像

问题描述

单击缩略图时,FancyBox 会放大该图像,但我想做的是将被放大的图像替换为另一个图像。

<map>
  <area shape="poly" coords="453,862,477,862,478,899,453,900" href="/Images/main.jpg" alt="333" />
</map

$('area').fancybox({
  beforeLoad: function(instance){
   //change href to something like "/Images/main_333.jpg"
   // the idea is to grab the alt tab number and then add it to the href string to get the correct image
  }
});

标签: jqueryfancybox

解决方案


以下是如何更改 URL 的示例:

$('[data-fancybox="images"]').fancybox({
  beforeLoad : function(instance, current) {
    current.src = 'https://loremly.com/640x480/';
  }
});

推荐阅读