码迷,mamicode.com
首页 > 其他好文 > 详细

react 简单轮播图实现

时间:2020-06-24 22:01:21      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:last   实现   top   nsf   height   round   pad   tom   color   

ul{
  padding: 0;
  margin: 0;
}
.swipper {
  width: 50%;
  background-color: #99a9bf;
  position: relative;
  overflow: hidden;
  .swipper-item {
    top:0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-block;
    text-align: center;
    background-color: #00965E
  }
  .btn-prev{
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -13px;
    width: 36px;
    height: 36px;
    z-index: 2;
  }
  .btn-next{
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -13px;
    width: 36px;
    height: 36px;
    z-index: 2;
  }
  .nav{
    position: absolute;
    bottom: 10px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    .nav-item{
      display: inline-block;
      border-radius: 50%;
      background-color: #FFAC38;
      width: 10px;
      height: 10px;
      padding: 2px;
      opacity: .4;
      &:not(:last-child){
        margin-right: 5px;
      }
    }
    .is-active{
      opacity:1
    }
  }
}

  

react 简单轮播图实现

标签:last   实现   top   nsf   height   round   pad   tom   color   

原文地址:https://www.cnblogs.com/llcdbk/p/13189505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!