Authored by 张丽霞

店铺的热门品类边框利用JS来控制样式

... ... @@ -849,4 +849,12 @@ $('#collect').on('touchstart', function(e) {
}
});
//根据热门品类的个数来改变样式展示
if ($('.category-list li').length % 4 !== 0) {
$('.category-list li:last-child').addClass('category-list-last-li');
}
if ($('.category-list li').length < 4) {
$('.category-list').addClass('category-list-top-board');
$('.category-list').find('.buriedpoint').addClass('category-list-only-one-row');
}
... ...
... ... @@ -505,4 +505,16 @@
transform: rotate(-180deg);
}
}
.category-list-top-board {
border-top: 1px solid #e0e0e0;
}
.category-list-last-li {
border-right: 1px solid #e0e0e0;
}
.category-list-only-one-row {
border-top: none!important;
}
}
\ No newline at end of file
... ...