当前位置:   article > 正文

小程序导航栏全屏navigationStyle自定义导航栏,小程序轮播图导航栏

navigationstyle
  <!-- swiper -->
    <view class="page-section page-section-spacing swiper">
      <swiper indicator-dots="{{indicatorDots}}"
        autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
        <block wx:for="{{background}}" wx:key="key">
          <swiper-item>
            <view class="swiper-item">
              <image src="{{ item.url }}"></image>
            </view>
          </swiper-item>
        </block>
      </swiper>
    </view>
  </view>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

css

.swiper{
position: fixed;
width: 750rpx;
height: 422rpx;
}
swiper{
height: 422rpx;
}

js

  data: {
    background: [{
      key: 1,
      url: '../../../images/banner.png'
    }, {
      key: 2,
      url: '../../../images/banner.png'
    }, {
      key: 3,
      url: '../../../images/banner.png'
    }, {
      key: 4,
      url: '../../../images/banner.png'
    }],
    
    })
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

json重点
"navigationStyle": "custom"
如果轮播样式在所有页面都有就放到app.json中,只有某一个页面有就单独放在那个文件下
效果
在这里插入图片描述
欢迎大家互相交流

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/775281
推荐阅读
相关标签