uniapp实现轮播图功能,实现轮播图案例

2020-12-29   阅读:5404   分类:前端    标签: uni-app

uni-app轮播图主要用到swiper滑块视图容器。一般用于左右滑动或上下滑动,比如banner轮播图。

实现案例:

GIF.gif

页面代码

<template>
<!-- 轮播图 -->
                   <view>
                            <view class="page-section swiper">
                                     <view>
                                               <swiper :indicator-dots="indicatorDots" :indicator-color="indicatorColor" :indicator-active-color="indicatorActiveColor" :autoplay="autoplay" :interval="interval" :duration="duration">
                                                        <swiper-item>
                                                                 <view>
                                                                           <image src="/static/banner_01.jpg" mode=""></image>
                                                                 </view>
                                                        </swiper-item>
                                                        <swiper-item>
                                                                 <view>
                                                                           <image src="/static/banner_02.jpg" mode=""></image>
                                                                 </view>
                                                        </swiper-item>
                                                        <swiper-item>
                                                                 <view>
                                                                           <image src="/static/banner_02.jpg" mode=""></image>
                                                                 </view>
                                                        </swiper-item>
                                               </swiper>
                                     </view>
                            </view>
                   </view>
<!-- 轮播图 -->
</template>

Js代码

<script>
         export default {
                   data() {
                            return {
                                     indicatorDots: true,
                                     autoplay: true,
                                     interval: 3000,
                                     duration: 500,
                                     indicatorColor:"#292b40",
                                     indicatorActiveColor: "#ffffff"
                            }
                   },
                   onLoad() {
 
                   },
                   methods: {
 
                   }
         }
</script>

样式代码:

<style>
         .banner{ width: 750rpx; height: 422rpx; background-color: #0f0f27;}
         .banner .swiper{width: 750rpx; height: 422rpx !important;}
         .banner .swiper-item{ width: 750rpx; height: 422rpx !important;}
         .banner .swiper-item image{ display: block; width: 750rpx; height:422rpx !important;}
</style>


【腾讯云】 爆款2核2G3M云服务器首年 61元,2核2G4M云服务器新老同享 99元/年,续费同价

‘简忆博客’微信公众号 扫码关注‘简忆博客’微信公众号,获取最新文章动态
转载:请说明文章出处“来源简忆博客”。http://www.tpxhm.com/fdetail/564.html

×
觉得文章有用就打赏一下文章作者
微信扫一扫打赏 微信扫一扫打赏
支付宝扫一扫打赏 支付宝扫一扫打赏

文章评论(0)

登录
简忆博客壁纸一
简忆博客壁纸二
简忆博客壁纸三
简忆博客壁纸四
简忆博客壁纸五
简忆博客壁纸六
简忆博客壁纸七
简忆博客壁纸八
头像

简忆博客
勤于学习,乐于分享

置顶推荐

打赏本站

如果你觉得本站很棒,可以通过扫码支付打赏哦!
微信扫码:你说多少就多少~
微信扫码
支付宝扫码:你说多少就多少~
支付宝扫码
×