...
|
...
|
@@ -17,9 +17,12 @@ var $commentList = $commentArea.find('.comments-wrap'), |
|
|
MAX_COMMENTS_WORDS = 100,
|
|
|
$wordCountTip = $('#word-count-tip'),
|
|
|
_alert = dialog.Alert,
|
|
|
tag = $('#tags').find('li').length;
|
|
|
tag = $('#tags').find('li').length,
|
|
|
len = $('.goods').find('.good-info').length / 4,
|
|
|
pag = 0;
|
|
|
|
|
|
require('../plugins/share');
|
|
|
//require('yoho-unslider');
|
|
|
|
|
|
$('#prise-btn').click(function() {
|
|
|
var prising = false,
|
...
|
...
|
@@ -192,10 +195,35 @@ if ($('.collocation').find('.good-info').length === 0) { |
|
|
|
|
|
if ($('.goods').find('.good-info').length === 0) {
|
|
|
$('.related-group').hide();
|
|
|
} else if ($('.goods').find('.good-info').length < 5) {
|
|
|
$('.left').hide();
|
|
|
$('.right').hide();
|
|
|
}
|
|
|
|
|
|
// $('.left').click(function {
|
|
|
// $('.goods').animate({ left: '+50px' }, "slow");
|
|
|
// })
|
|
|
$('.right').click(function() {
|
|
|
pag = pag + 1;
|
|
|
|
|
|
// console.log($('.goods').offsetWidth() |
|
|
if (pag === len -1 ) {
|
|
|
$('.right').addClass('hide');
|
|
|
}
|
|
|
|
|
|
if (pag !== 0 ) {
|
|
|
$('.left').removeClass('hide');
|
|
|
}
|
|
|
|
|
|
$('.goods').animate({left: '+=' + '-930px'});
|
|
|
})
|
|
|
|
|
|
$('.left').click(function() {
|
|
|
pag = pag - 1;
|
|
|
|
|
|
if (pag === 0) {
|
|
|
$('.left').addClass('hide');
|
|
|
}
|
|
|
|
|
|
if(pag !== len -1) {
|
|
|
$('.right').removeClass('hide');
|
|
|
}
|
|
|
|
|
|
$(".goods").animate({left: '+=' + '930px'});
|
|
|
}) |
...
|
...
|
|