单击缩略图时,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
}
});