Authored by 王水玲

blk 商品详情页收藏效果修改

... ... @@ -31,6 +31,7 @@ var $sizeInfo = $('.size-info');
var $saleReturn = $('#saleReturn');
var $thumbCur = $('.thumb-wrap .cur'); // 当前选中展示图片
var $calCol = $('.collected .cal-col');
var SLIDETIME = 200;
... ... @@ -323,6 +324,8 @@ $('#collect-product').click(function() {
if ($this.hasClass('coll')) {
param.type = 'cancel';
$calCol.prev().show();
$calCol.hide();
}
$.ajax({
... ... @@ -338,6 +341,18 @@ $('#collect-product').click(function() {
});
});
$('#collect-product').mouseenter(function() {
if ($(this).hasClass('coll')) {
$calCol.prev().hide();
$calCol.show();
}
}).mouseleave(function() {
if ($(this).hasClass('coll')) {
$calCol.prev().show();
$calCol.hide();
}
});
$('.more-brand-intro').click(function() {
$('body').css({overflow: 'hidden'});
new Dialog({
... ...
... ... @@ -230,14 +230,6 @@
.cal-col {
display: none;
}
&:hover em {
display: none;
}
&:hover .cal-col {
display: inline;
}
}
.coll {
... ...