| 1234567891011121314151617181920212223242526272829303132333435363738 |
- // 轮番图
- var swiper = new Swiper('.swiper-container', {
- slidesPerView: 'auto', //重要 可以去swiper搜索
- centeredSlides: true, //重要
- paginationClickable: true,
- spaceBetween: 10,
- effect: 'left',
- loop: true,
- pagination: {
- el: '.swiper-pagination',
- clickable: true,
- },
- autoplay: {
- disableOnInteraction: false, //手动滑动之后不打断播放
- delay: 5000
- },
- });
- // 显示顶部导航
- $(window).scroll(function() {
- var hT = $('.classified-nav').offset().top,
- hH = $('.classified-nav').outerHeight(),
- wS = $(this).scrollTop();
- if (wS > (hT+hH-60)){
- $(".nav").slideDown();
- }else{
- $(".nav").slideUp();
- }});
-
- // 底部广告关闭
- $(".adv-bottom .close").click(function(){
- $('.adv-bottom').fadeOut(500);
- setTimeout(function () {
- $(".footer").css("padding-bottom","0.25rem")
- }, 500);
- })
|