Authored by 2586703@qq.com

show js

... ... @@ -261,20 +261,16 @@ define('yohood', function(require, exports) {
$(".show-wrap .image-box").bind("click", function() {
showNone($(this));
});
$("#bigpic").live("mousemove", function() {
$("#bigpic").live("mouseenter", function() {
showLabel($(this).parent(), 480, 480, 0, 0);
});
$(".show-wrap .image-box").bind("mousemove", function() {
$(".show-wrap .image-box").bind("mouseenter", function() {
showLabel($(this), 308, 308, 0, 0);
});
}
$(".show-wrap .image-box, .img-zoom").bind("mouseout", function() {
$(".show-wrap .image-box, .img-zoom").bind("mouseleave", function() {
showNone($(this));
});
$('.pic-tip').on('mousemove', function() {
$(this).show();
})
}
//整个页面布局
... ...