基于jquery自定义图片热区效果

2020-05-22 16:05:15易采站长站整理

_link_conrainer.find(‘.map-link[ref=’+ref+’]’).remove();
_position_conrainer.find(‘.map-position[ref=’+ref+’]’).remove();
_coordsMap.find(‘area[ref=’+ref+’]’).remove();
var index = 1;
_link_conrainer.find(‘.map-link’).each(function(){
$(this).attr(‘ref’,index).find(‘.link-number-text’).html(‘热点’+index);
index ++;
});
index = 1;
_position_conrainer.find(‘.map-position’).each(function(){
$(this).attr(‘ref’,index).find(‘.link-number-text’).html(‘热点’+index);
index ++;
});
index = 1;
_coordsMap.find(‘area’).each(function(){
$(this).attr(‘ref’,index);
index ++;
});
});
}
bind_map_event();
function define_css(){
//样式定义
$container.find(‘.map-position .resize’).css({
display:’block’,
position:’absolute’,
right:0,
bottom:0,
width:5,
height:5,
cursor:’nw-resize’,
background:’#000′
});
}
define_css();
};
})(jQuery);

页面引用:$(‘.imgMap’).imageMaps();