小程序21-绘制轮播图

在小程序中,提供了 swiper 和 swiper-item 组件实现轮播图

swiper:滑块视图容器,其中只能放置 swiper-item 组件

swiper- item:只可放置在 swiper 组件中,宽高自动设置为100%,代表 swiper 中的每一项

文档所在位置:wswiper文档链接

swiper 常用属性

  1. autoplay:是否自动切换
  2. circular:是否采用衔接滑动(1-2-3-1)
  3. interval:自动切换时间间隔
  4. indicator-dots:是否显示面板指示点
  5. indicator-color:指示点颜色
  6. indicator-active-color:当前选中的指示点颜色

图1: vxml文件内容-可直接复制,图2: scss文件内容-可直接复制

html 复制代码
<!-- 轮播图区域 -->
<view class="swiper">
  <swiper 
    autoplay
    circular
    interval="1000"
    indicator-dots
    indicator-color="#fff"
    indicator-active-color="#f3514f">
    <swiper-item>
      1
    </swiper-item>
    <swiper-item>
      2
    </swiper-item>
    <swiper-item>
      3
    </swiper-item>
  </swiper>
</view>
css 复制代码
// 轮播图区域样式
.swiper {
  swiper {
    height: 360rpx;
    background-color: skyblue;
    text-align: center;

    swiper-item {
      // & 在 Sass 中代表的是父选择器
      // swiper- item:first-child 选中第一个子元素
      line-height: 360rpx;
      &:first-child {
        background-color: lightcoral;
      }
      &:last-child {
        background-color: lightgreen;
      }
    }
  }
}

扩展

全局样式:在 app.wxss 定义的样式规则,作用于每一个页面,例如:设置字号、背景色等

局部样式:在 page.wxss 定义的样式规则,仅作用于对应页面,并会覆盖 app.wxss 中相同的选择器

相关推荐
用屁屁笑16 分钟前
Spring Web MVC
前端·spring·mvc
尘浮生38 分钟前
Java项目实战II基于微信阅读网站小程序的设计与实现(开发文档+数据库+源码)
java·开发语言·数据库·spring boot·微信·微信小程序·小程序
小牛itbull1 小时前
ReactPress与WordPress:两大开源发布平台的对比与选择
javascript·react.js·开源·wordpress·reactpress
yqcoder1 小时前
react 中 useRef Hook 作用
前端·javascript·react.js
萧鼎1 小时前
【python】掌握 Flask:轻量级 Web 开发框架解析
前端·python·flask
Lovely_Ruby1 小时前
【Tealscale + Headscale + 自建服务器】异地组网笔记
前端
祁思妙想1 小时前
25.<Spring博客系统②(实现JWT令牌登录接口+强制登录+获取用户信息+获取作者信息)>
运维·服务器·前端
西瓜watermelon1 小时前
React 元素条件渲染:解锁动态界面的关键密码
前端·react.js
J总裁的小芒果2 小时前
前端传数组 数据库存Json : [1,2,3]格式
java·前端·javascript·vue.js·java-ee
光影少年2 小时前
前端开发未来发展怎么样
前端