Swiper实现带两侧带遮罩层的滑动效果

swiper 3我原来采用的是swiper3实现的
主要代码我po一下
html:
< div class = "swiper-container" >
                                   < div class = "swiper-wrapper" >
                                       < div class = "swiper-slide swiper-slide-1" >
                                           < div >
                                                < a class = "btn-disableQ" >每天10:00</ a >
                                                < a class = "btn-ableQ" >立即抢</ a >                                                 
                                           </ div >
                                       </ div >
                                       < div class = "swiper-slide swiper-slide-2" >
                                           < div >
                                                < a class = "btn-disableQ" >每天13:00</ a >
                                                < a class = "btn-ableQ" >立即抢</ a >                                                 
                                           </ div >
                                       </ div >
                                       < div class = "swiper-slide swiper-slide-3" >
                                           < div >
                                                < a class = "btn-disableQ" >每天17:00</ a >
                                                < a class = "btn-ableQ" >立即抢</ a >                                                 
                                           </ div >
                                       </ div >
                                       < div class = "swiper-slide swiper-slide-4" >
                                           < div >
                                                < a class = "btn-disableQ" >每天20:00</ a >
                                                < a class = "btn-ableQ" >立即抢</ a >                                                 
                                           </ div >
                                       </ div >
                                   </ div >
                                  
                               < div class = "swiper-button-prev" ></ div >
                               < div class = "swiper-button-next" ></ div >
                              </ div >

css:
.swiper-container {
      margin : 0 170 px ;
}    
.swiper-slide {
      width : 558 px ;
      }
.swiper-slide a {
      transition : 0.2 s ;
      }    
.swiper-pagination {
      text-align : center ;
      width : 100 % ;
      margin-top : 10 px ; }
.swiper-pagination .swiper-pagination-bullet {
    width : 12 px ;
    height : 12 px ;
      margin : 0 5 px ;
      background : #02328d ;
}
.swiper-button-prev {
      width : 32 px ;
      height : 92 px ;   
      background : url(../images/slide_prev.png) no-repeat center rgba ( 255 , 255 , 255 , .8 ) ;
      left : 200 px ;
    border-radius : 5 px ;
}
.swiper-button-next {
      width : 32 px ;
      height : 92 px ;   
      background : url(../images/slide_after.png) no-repeat center rgba ( 255 , 255 , 255 , .8 ) ;    
      right : 200 px ;
    border-radius : 5 px ;
}
.swiper-button-prev : hover , .swiper-button-next : hover {
      background-color : rgba ( 255 , 255 , 255 , 1 ) ;
}
.swiper-slide {
      width : 518 px ;
      height : 448 px ;
      background : url(../images/qiangBg-1.png) no-repeat center;
}
.swiper-slide > div {
      width : 518 px ;
      height : 448 px ;
      padding-top : 334 px ;
      background : url(../images/qiangBg-gray2.png) no-repeat center ;
}
.swiper-slide.nobg > div {
      background : none ;    
}
.swiper-slide-2 {
      background : url(../images/qiangBg-2.png) no-repeat center;
}
.swiper-slide-3 {
      background : url(../images/qiangBg-3.png) no-repeat center;
}
.swiper-slide-4 {
      background : url ( ../images/qiangBg-4 .png ) no-repeat center ;
}
.qiang .box .inner img {
      width : 310 px ;
      display : block ;
      margin : 0 auto ;
      padding-top : 143 px ;
}
.swiper-slide a {
      cursor : pointer ;
      display : block ;
      font-size : 34.25 px ;
      width : 309 px ;
      margin : 0 auto ;
      height : 66.5 px ;
      line-height : 66.5 px ;
      -moz-border-radius : 66.5 px ;
      -webkit-border-radius : 66.5 px ;
      border-radius : 66.5 px ;
      text-align : center;
      background-image : -webkit-linear-gradient ( to left , #fc8f4e , #f84b47 ) ;
    background-image : linear-gradient ( to left , #fc8f4e , #f84b47 ) ;
    -moz-box-shadow : 0 1 px 5 px 0 #f8e0e0 ;
    -webkit-box-shadow : 0 1 px 5 px 0 #f8e0e0 ;
    box-shadow : 0 1 px 5 px 0 #f8e0e0 ;
}
.swiper-slide a .btn-ableQ {
      display : none ;
}
.swiper-slide a .btn-disableQ {
      background : #ccc ;
     -moz-box-shadow : none ;
    -webkit-box-shadow : none ;
    box-shadow : none ;
}

js:
 < script >
               var swiper = new Swiper( '.swiper-container' ,{
                     autoplay : 3000 ,
                     loop : true ,
                     loopedSlides : 3 ,
                     spaceBetween : 0 ,
                     centeredSlides : true ,
                     slidesPerView : 'auto' ,
                   nextButton : '.swiper-button-next' ,
                   prevButton : '.swiper-button-prev' ,
                   onSlideChangeStart : function ( swiper ){
                        $( '.swiper-wrapper' ).find( '.swiper-slide' ).eq(swiper.activeIndex).siblings().removeClass( 'nobg' );
                       var as= $( '.swiper-wrapper' ).find( '.swiper-slide' ).eq(swiper.activeIndex).addClass( 'nobg' )
                    },
                     });
               </ script >





但是swiper3存在兼容ie9的问题
因而改用了swiper 2实现这个
html:
 < div class = "swiper-container" >
                                    < div class = "swiper-button-prev" ></ div >
                                    < div class = "swiper-button-next" ></ div >
                                   < div class = "swiper-wrapper" >
                                       < div class = "swiper-slide swiper-slide-1" >
                                           < div >
                                                < a class = "btn-disableQ" >每天10:00</ a >
                                                < a class = "btn-ableQ" >立即抢</ a >                                                 
                                           </ div >
                                       </ div >
                                       < div class = "swiper-slide swiper-slide-2 nobg" >
                                           < div >
                                                < a class = "btn-disableQ" >每天13:00</ a >
                                                < a class = "btn-ableQ" >立即抢</ a >                                                 
                                           </ div >
                                       </ div >
                                       < div class = "swiper-slide swiper-slide-3" >
                                           < div >
                                                < a class = "btn-disableQ" >每天17:00</ a >
                                                < a class = "btn-ableQ" >立即抢</ a >                                                 
                                           </ div >
                                       </ div >
                                       < div class = "swiper-slide swiper-slide-4" >
                                           < div >
                                                < a class = "btn-disableQ" >每天20:00</ a >
                                                < a class = "btn-ableQ" >立即抢</ a >                                                 
                                           </ div >
                                       </ div >
                                   </ div >
                              </ div >

css:
.swiper-container{
    margin: 0 170px;
    height: 448px;
}   
.swiper-slide{
    width:558px;
    }
.swiper-slide a{
    transition: 0.2s;
    }   
.swiper-pagination{
    text-align:center;
    width:100%;
    margin-top:10px;}
.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin:0 5px;
    background:#02328d;
}
.swiper-button-prev{
    width: 32px;
    height: 92px;
    background: url(../images/slide_prev.png) no-repeat center rgba(255,255,255,.8);
    left: 200px;
    border-radius: 5px;
    position: absolute;
    z-index: 2;
    top: 50%;
    margin-top: -46px;
    cursor: pointer;
}
.swiper-button-next{
    width: 32px;
    height: 92px;
    background: url(../images/slide_after.png) no-repeat center rgba(255,255,255,.8);
    right: 200px;
    border-radius: 5px;
    position: absolute;
    z-index: 2;
    top: 50%;
    margin-top: -46px;
    cursor: pointer;
}

.swiper-button-prev:hover,.swiper-button-next:hover{
    background-color: rgba(255,255,255,1);
}
.swiper-slide{
    width: 518px;
    height: 448px;
    background: url(../images/qiangBg-1.png) no-repeat center;
}
.swiper-slide>div{
    width: 100%;
    height: 448px;
    padding-top: 334px;
    background: url(../images/qiangBg-gray2.png) no-repeat center;
}
.swiper-slide.nobg>div{
    background: none;   
}
.swiper-slide-2{
    background: url(../images/qiangBg-2.png) no-repeat center;
}
.swiper-slide-3{
    background: url(../images/qiangBg-3.png) no-repeat center;
}
.swiper-slide-4{
    background: url(../images/qiangBg-4.png) no-repeat center;
}

.qiang .box .inner img{
    width: 310px;
    display: block;
    margin: 0 auto;
    padding-top: 143px;
}
.swiper-slide a{
    cursor: pointer;
    display: block;
    font-size: 34.25px;
    width: 309px;
    margin: 0 auto;
    height: 66.5px;
    line-height: 66.5px;
    -moz-border-radius: 66.5px;
      -webkit-border-radius: 66.5px;
      border-radius: 66.5px;
    text-align: center;
    background-image: -webkit-linear-gradient(to left, #fc8f4e, #f84b47);
    background-image: linear-gradient(to left, #fc8f4e, #f84b47);
    -moz-box-shadow: 0 1px 5px 0 #f8e0e0;
    -webkit-box-shadow: 0 1px 5px 0 #f8e0e0;
    box-shadow: 0 1px 5px 0 #f8e0e0;
}
.swiper-slide a.btn-ableQ{
     display: none;
}
.swiper-slide a.btn-disableQ{
    background: #ccc;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

js有稍许变化:
 < script >
               var swiper = new Swiper( '.swiper-container' ,{
                     autoplay : 3000 ,
                     slidesPerView : 3 ,
                     loop : true ,
                     loopAdditionalSlides : 2 ,
                     autoplayDisableOnInteraction : false ,
                   onSlideChangeStart : function ( swiper ){
                        $( '.swiper-wrapper' ).find( '.swiper-slide' ).eq(swiper.activeIndex).next().addClass( 'nobg' )
                        $( '.swiper-wrapper' ).find( '.swiper-slide' ).eq(swiper.activeIndex).next().siblings().removeClass( 'nobg' );
                    },
                     });
                      $( '.swiper-button-prev' ).on( 'click' , function ( e ){
                         e.preventDefault()
                         swiper.swipePrev()
                       })
                       $( '.swiper-button-next' ).on( 'click' , function ( e ){
                         e.preventDefault()
                         swiper.swipeNext()
                       })
               </ script >

效果还是如上图一样但是感觉要稍微卡顿一些的。

最后还是有问题及时兼容了Ie9了就是存在于切换完一轮以后对中间状态的判定谁应该是亮色的由于active状态的是第一张

然后用了没这么优雅的效果就是用aboslute给两边slide所占位出添加阴影块。
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值