12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- $(function(){
- //轮播图
- var swiper = new Swiper('.swiper-container', {
- loop : true,
- centeredSlides: true,
- autoplay: {
- delay: 2500,
- disableOnInteraction: false,
- },
- pagination: {
- el: '.swiper-pagination',
- clickable: true,
- },
- });
-
- //点击榜tab
- $('.i_m_tit_tab a').click(function(){
- var $this=$(this);
- var nIndex=$this.index();
- var smoreurl=$this.attr('smoreurl');
- $this.addClass('hover').siblings('a').removeClass('hover');
- $('.i_images_scroll_list ul').eq(nIndex).addClass('i_images_scroll_ul_hover').siblings('ul').removeClass('i_images_scroll_ul_hover');
- $('.i_m_tit_tab_more').attr('href',smoreurl);
- });
-
- //图片懒加载
-
- $('img').picLazyLoad({
- effect : "fadeIn"
- });
- $(window).scrollTop($(window).scrollTop()+1);
- $(window).scrollTop($(window).scrollTop()-1);
- scroll(function(direction) {
- if(direction=='down'){
- $('body').removeClass('fixednav');
- }else{
- if(afterScrollTop>100) {
- $('body').addClass('fixednav');
- }else{
- $('body').removeClass('fixednav');
- }
- }
- });
- $('.special_item').each(function(index, item){
- var data = {
- from:$(item).attr('data-from'),
- special_id:$(item).attr('data-special_id'),
- };
- cpslog([702, data]);
- });
- });
- //滚动滚轮
- var afterScrollTop=0;
- function scroll( fn ) {
- var beforeScrollTop = $(window).scrollTop(),
- fn = fn || function() {};
- $(window).scroll(function() {
- afterScrollTop = $(window).scrollTop();
- var delta = afterScrollTop - beforeScrollTop;
- if( delta === 0 ) return false;
- fn( delta > 0 ? "down" : "up" );
- beforeScrollTop = afterScrollTop;
- });
- }
|