react 简单轮播图实现

Posted llcdbk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react 简单轮播图实现相关的知识,希望对你有一定的参考价值。

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 简单轮播图实现的主要内容,如果未能解决你的问题,请参考以下文章

react-swipeable-views轮播图实现下方的切换点控制组件

原生js简单轮播图 代码

Vue轮播图的实现及其与jQuery轮播图的简单对比|饥人谷前端教程

简单轮播图的实现及原理讲解(js)

React Native布局实践:开发京东客户端首页——轮播图的实现

ReactNative实现轮播图