首页 > 其他分享 >swiper常用属性

swiper常用属性

时间:2022-12-13 18:22:57浏览次数:47  
标签:常用 如下 效果 swiper 属性

<view>
	<!-- 
	  指示点:indicator-dots
	  自动轮播:autoplay
	  轮播间隔:interval
	  使用衔接动画:circular
	  动画的时长:duration
	 -->
	<swiper class="swiper" indicator-dots autoplay interval="2000" circular duration="200">
	  <swiper-item style="background-color: pink;">
	    <view class="a">a</view>
	  </swiper-item>
	  <swiper-item style="background-color: blue;">
	    <view class="b">b</view>
	  </swiper-item>
	  <swiper-item style="background-color: green;">
	    <view class="c">c</view>
	  </swiper-item>
	</swiper>
	</view>

  效果如下:

 

标签:常用,如下,效果,swiper,属性
From: https://www.cnblogs.com/Metx/p/16979563.html

相关文章

  • 前端常用的正则校验
     例如element常用的必填校验:   固话和手机号pattern:/^(((\d{3,4}-)?[0-9]{7,8})|(1(3|4|5|6|7|8|9)\d{9}))$/ 手机号pattern:/^1[3|4|5|6|7|8|9][0-......
  • 常用的dos命令
    常用的Dos命令盘符切换盘符名称+冒号查看当前目录下的所有文件dir切换目录cd退回到上一级目录cd..清理屏幕cls退出终端exit查看IP地址ipconfig打开应用ca......
  • C# IMEMODE属性
    近日忽然想要控制文本框的输入法,输入英文和数字,而不能输入中文。结果搜索发现文本框自带一个IMEMODE的属性。分析其各项参数:在此我使用的是Disable属性,调出后默认为英文......
  • Day5 - 常用模块学习
    本节大纲:模块介绍time&datetime模块randomossysshutiljson&picleshelvexml处理yaml处理configparserhashlibsubprocesslogging模块re正则表达式 模块,用一砣代码......
  • GTM 常用断点设置
    1:VA02修改出仓单跳过WTEW检查 se38:LWB2_ADD_ON_SERVICESV41 se37:wb2_add_on_read_so  260行  WB2B_WBGT_SINGLE_READ 95行  2:VF02产生会计凭证时   SE3......
  • Java POI 常用操作
    POI常用操作importorg.apache.poi.ss.usermodel.*;importorg.apache.poi.ss.util.CellRangeAddress;importorg.apache.poi.xssf.usermodel.XSSFCell;importorg.ap......
  • HTML id 属性
    HTML id 属性用于为HTML元素指定唯一的id。一个HTML文档中不能存在多个有相同id的元素。使用id属性id 属性指定HTML元素的唯一ID。 id 属性的值在HTML......
  • MySql的常用函数2
    2.分组函数功能:做统计使用(统计函数、聚合函数、组函数)分类:sum求和、avg平均值、max最大值、min最小值、count计算个数#1.简单的使用selectsum(salary)fromemploye......
  • phoneix常用命令
    建表:CREATETABLEGPS2("id"BIGINTPRIMARYKEY,"data"."mmsi"VARCHAR,"data"."lon"DOUBLE,"data"."lat"DOUBLE,"data"."sog"DOUBLE,"data"."cog"DOU......
  • 【JAVA笔记】Java中的常用工具API简介、Object类的特点、JavaBean类重写Object类中的
    一、Java常用工具API简介   根据步骤查找API文档使用对应功能API网址:https://www.apiref.com/java11-zh/index.html什么是API?二、Object类的特点1.java.lan......