鸿蒙5.0开发进阶:JS组件-swiper

往期鸿蒙5.0全套实战文章必看:(文中附带全栈鸿蒙5.0学习资料)


swiper

说明

从API version 4开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

滑动容器,提供切换子组件显示的能力。

权限列表

子组件

可以包含子组件。

属性

除支持通用属性外,还支持如下属性:

名称类型默认值必填描述
indexnumber0当前在容器中显示的子组件的索引值。
autoplaybooleanfalse子组件是否自动播放,自动播放状态下,导航点不可操作5+。
intervalnumber3000使用自动播放时播放的时间间隔,单位为ms。
indicatorbooleantrue是否启用导航点指示器,默认true。
digital5+booleanfalse

是否启用数字导航点,默认为false。

必须设置indicator时才能生效数字导航点。

indicatordisabled5+booleanfalse指示器是否禁止用户手势操作,设置为true时,指示器不会响应用户的点击拖拽。
loopbooleantrue是否开启循环滑动。
durationnumber-子组件切换的动画时长。
verticalbooleanfalse是否为纵向滑动,纵向滑动时采用纵向的指示器。
cachedsize7+number-1swiper延迟加载时item最少缓存数量。-1表示全部缓存。
scrolleffect7+stringspring

滑动效果。目前支持如下:

- spring:弹性物理动效,滑动到边缘后可以根据初始速度或通过触摸事件继续滑动一段距离,松手后回弹。

- fade:渐隐物理动效,滑动到边缘后展示一个波浪形的渐隐,根据速度和滑动距离的变化渐隐也会发送一定的变化

- none:滑动到边缘后无效果。

该属性仅在loop属性为false时生效。

样式

除支持通用样式外,还支持如下样式:

名称类型默认值必填描述
indicator-color<color>-导航点指示器的填充颜色。
indicator-selected-color<color>#ff007dff导航点指示器选中的颜色。
indicator-size<length>4px导航点指示器的直径大小。
indicator-top|left|right|bottom<length> | <percentage>-导航点指示器在swiper中的相对位置。
next-margin7+<length> | <percentage>-后边距,用于露出后一项的一小部分。
previous-margin7+<length> | <percentage>-前边距,用于露出前一项的一小部分。

事件

除支持通用事件外,还支持如下事件:

名称参数描述
change{ index: currentIndex }当前显示的组件索引变化时触发该事件。
rotation{ value: rotationValue }智能穿戴表冠旋转事件触发时的回调。
animationfinish7+-动画结束时触发该事件。

方法

除支持通用方法外,还支持如下方法:

名称参数描述
swipeTo{ index: number(指定位置) }切换到index位置的子组件。
showNext显示下一个子组件。
showPrevious显示上一个子组件。

示例

<!-- xxx.hml -->
<div class="container">
  <swiper class="swiper" id="swiper" index="0" indicator="true" loop="true" digital="false" cachedsize="-1"
    scrolleffect="spring">
    <div class = "swiperContent1" >
      <text class = "text">First screen</text>
    </div>
    <div class = "swiperContent2">
      <text class = "text">Second screen</text>
    </div>
    <div class = "swiperContent3">
      <text class = "text">Third screen</text>
    </div>
  </swiper>
  <input class="button" type="button" value="swipeTo" onclick="swipeTo"></input>
  <input class="button" type="button" value="showNext" onclick="showNext"></input>
  <input class="button" type="button" value="showPrevious" onclick="showPrevious"></input>
</div>
/* xxx.css */
.container {
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
}
.swiper {
  flex-direction: column;
  align-content: center;
  align-items: center;
  width: 70%;
  height: 130px;
  border: 1px solid #000000;
  indicator-color: #cf2411;
  indicator-size: 14px;
  indicator-bottom: 20px;
  indicator-right: 30px;
  margin-top: 100px;
  next-margin:20px;
  previous-margin:20px;
}
.swiperContent1{
  height: 100%;
  width: 100%;
  justify-content: center;
  background-color: #007dff;
}
.swiperContent2{
  height: 100%;
  width: 100%;
  justify-content: center;
  background-color: #ff7500;
}
.swiperContent3{
  height: 100%;
  width: 100%;
  justify-content: center;
  background-color: #41ba41;
}
.button {
  width: 70%;
  margin: 10px;
}
.text {
  font-size: 40px;
}
// xxx.js
export default {
  swipeTo() {
    this.$element('swiper').swipeTo({index: 2});
  },
  showNext() {
    this.$element('swiper').showNext();
  },
  showPrevious() {
    this.$element('swiper').showPrevious();
  }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值