...
|
...
|
@@ -17,10 +17,14 @@ 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,
|
|
|
leng = $('.goods').find('.good-info').length / 4,
|
|
|
pag = 0;
|
|
|
|
|
|
require('../plugins/share');
|
|
|
|
|
|
// require('yoho-unslider');
|
|
|
|
|
|
$('#prise-btn').click(function() {
|
|
|
var prising = false,
|
|
|
url,
|
...
|
...
|
@@ -192,10 +196,37 @@ 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;
|
|
|
|
|
|
if (pag === leng - 1) {
|
|
|
$('.right').addClass('hide');
|
|
|
}
|
|
|
|
|
|
if (pag !== 0) {
|
|
|
$('.left').removeClass('hide');
|
|
|
}
|
|
|
|
|
|
$('.goods').animate({left: '+=-930px'});
|
|
|
});
|
|
|
|
|
|
$('.left').click(function() {
|
|
|
var $goods = $('.goods');
|
|
|
|
|
|
pag = pag - 1;
|
|
|
|
|
|
if (pag === 0) {
|
|
|
$('.left').addClass('hide');
|
|
|
}
|
|
|
|
|
|
// console.log($('.goods').offsetWidth() |
|
|
if (pag !== leng - 1) {
|
|
|
$('.right').removeClass('hide');
|
|
|
}
|
|
|
|
|
|
$goods.animate({left: '+=930px'});
|
|
|
}); |
...
|
...
|
|