...
|
...
|
@@ -904,40 +904,6 @@ function fetchComment() { |
|
|
});
|
|
|
}
|
|
|
|
|
|
|
|
|
// $('.consult-comment').on('click', '.title', function() {
|
|
|
// var $this = $(this),
|
|
|
// index = $this.index();
|
|
|
//
|
|
|
// var $comments = $('.comments'),
|
|
|
// $consults = $('.consults');
|
|
|
//
|
|
|
// if ($this.hasClass('cur')) {
|
|
|
// return;
|
|
|
// }
|
|
|
//
|
|
|
// $this.addClass('cur');
|
|
|
// $this.siblings('.cur').removeClass('cur');
|
|
|
//
|
|
|
// if (index !== 0) {
|
|
|
//
|
|
|
// // 咨询
|
|
|
// $consults.slideDown(SLIDETIME);
|
|
|
// $comments.slideUp(SLIDETIME);
|
|
|
// } else {
|
|
|
// $consults.slideUp(SLIDETIME);
|
|
|
// $comments.slideDown(SLIDETIME);
|
|
|
// }
|
|
|
// }).on('click', '.load-more', function() {
|
|
|
// var $this = $(this);
|
|
|
//
|
|
|
// if ($this.hasClass('load-more-comments')) {
|
|
|
// loadAllComments(currentType);
|
|
|
// } else {
|
|
|
// loadConsults();
|
|
|
// }
|
|
|
// });
|
|
|
|
|
|
$('.consult-comment').on('click', '.load-more', function() {
|
|
|
var $this = $(this);
|
|
|
|
...
|
...
|
@@ -1297,5 +1263,26 @@ bindEvent.fire(); |
|
|
|
|
|
}());
|
|
|
|
|
|
$(window).scroll(function(){
|
|
|
var scrollStart = $('.other-infos').offset().top;
|
|
|
var scrollEnd = $('#judge').offset().top;
|
|
|
if($(document).scrollTop() >= scrollStart && $(document).scrollTop() <= scrollEnd){
|
|
|
$('.redcar').addClass('fixednav');
|
|
|
}else {
|
|
|
$('.redcar').removeClass('fixednav');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
$('.redcar').on('click', '.option', function(){
|
|
|
var $this = $(this);
|
|
|
|
|
|
if($this.hasClass('fixed')){
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
$this.closest('li').siblings().find('.option').removeClass('fixed');
|
|
|
$this.addClass('fixed');
|
|
|
});
|
|
|
|
|
|
// 数据懒加载
|
|
|
dataLazyLoad.init({cls: '.datalazyload', threshold: 0}); |
...
|
...
|
|