...
|
...
|
@@ -1249,7 +1249,7 @@ $('.comments').on('click', '.img-preview [data-role="preview-right"]', function( |
|
|
var $img = $(this).closest('.img-preview').find('.img-wrap img'),
|
|
|
rotate = ($img.data('rotate') || 0) * 1;
|
|
|
|
|
|
rotate -= 90;
|
|
|
rotate += 90;
|
|
|
$img.data('rotate', rotate);
|
|
|
$img.css('transform', 'rotate(' + rotate + 'deg)');
|
|
|
});
|
...
|
...
|
@@ -1834,6 +1834,7 @@ $(function() { |
|
|
$(function() {
|
|
|
$('.size-table tbody tr:odd td').css('background-color', '#f9f9f9');
|
|
|
|
|
|
// 调整商品信息的间距
|
|
|
$('.description-content .basic li').each(function(i) {
|
|
|
if ((i + 1) % 4 === 0) {
|
|
|
$(this).find('.justpostion').css({display: 'inline-block', 'margin-left': '70px'});
|
...
|
...
|
@@ -1843,6 +1844,21 @@ $(function() { |
|
|
$(this).find('.justpostion').css('margin-left', '56px');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
// 调整模特卡的间距
|
|
|
$('.model-card-item .item .key').each(function(i) {
|
|
|
var index = i + 1;
|
|
|
|
|
|
if (index % 3 === 2) {
|
|
|
$(this).css({
|
|
|
'padding-left': '50px'
|
|
|
});
|
|
|
} else if (index % 3 === 0) {
|
|
|
$(this).css({
|
|
|
'padding-left': '80px'
|
|
|
});
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
|
|
|
|
...
|
...
|
|