小程序中的轮播图
Posted 小蚂蚁hjk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序中的轮播图相关的知识,希望对你有一定的参考价值。
目录
- 小程序的宿主环境 - 组件
- 1.scroll-view 组件的基本使用
- 2.swiper 和 swiper-item 组件的基本使用
- 3.text 组件的基本使用
- 4.rich-text 组件的基本使用
- 附:微信小程序轮播图单独添加图片、修改轮播图图片、单独修改某张图片
- 总结
小程序的宿主环境 - 组件
1.scroll-view 组件的基本使用
实现如图的纵向滚动效果
<scroll-view class="container_2" scroll-y>
<view>T</view>
<view>S</view>
<view>J</view>
</scroll-view>
复制代码
.container_2 view
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
.container_2 view:nth-child(1)
background-color: red;
.container_2 view:nth-child(2)
background-color: yellowgreen;
.container_2 view:nth-child(3)
background-color: blue;
.container_2
display: flex;
justify-content: space-around
.container_2
border: 1px solid yellowgreen;
height: 130px;
width: 100px;
复制代码
scroll-y 改成 scroll-x
实现如图的横向滚动效果:
<scroll-view class="container_2" scroll-x>
<view>横 向 滑 动 演 示</view>
</scroll-view>
复制代码
.container_2 view
width: 300px;
height: 100px;
text-align: center;
line-height: 100px;
.container_2 view:nth-child(1)
background-color: red;
.container_2
display: flex;
justify-content: space-around
.container_2
border: 1px solid yellowgreen;
height: 100px;
width: 100px;
复制代码
2.swiper 和 swiper-item 组件的基本使用
实现如图的轮播图效果:
<swiper class="container_3" indicator-dots>
<swiper-item>
<view class="item">1</view>
</swiper-item>
<swiper-item>
<view class="item">2</view>
</swiper-item>
<swiper-item>
<view class="item">3</view>
</swiper-item>
<swiper-item>
<view class="item">4</view>
</swiper-item>
</swiper>
复制代码
.container_3
height: 160px;
.item
height: 100%;
line-height: 150px;
text-align: center;
swiper-item:nth-child(1) .item
background-color: burlywood;
swiper-item:nth-child(2) .item
background-color: yellow;
swiper-item:nth-child(3) .item
background-color: pink;
swiper-item:nth-child(4) .item
background-color: aqua;
复制代码
.swiper 组件的常用属性
属性 | 类型 | 默认值 | 说明 |
indicator-dots | boolean | false | 是否显示面板指示点 |
indicator-color | color | rgba(0, 0, 0, .3) | 指示点颜色 |
indicator-active-color | color | #000000 | 当前选中的指示点颜色 |
autoplay | boolean | false | 是否自动切换 |
interval | number | 5000 | 自动切换时间间隔 |
circular | boolean | false | 是否采用衔接滑动 |
3.text 组件的基本使用
文本组件
类似于 html 中的 span 标签,是一个行内元素
通过 text 组件的 selectable 属性,实现长按选中文本内容的效果:
<view>
手机号:
<text selectable>17608777</text>
</view>
复制代码
4.rich-text 组件的基本使用
富文本组件 支持把 HTML 字符串渲染为 WXML 结构
<rich-text nodes="<h1 style='color:pink;'>一级标题 <h1>"></rich-text>
复制代码
附:微信小程序轮播图单独添加图片、修改轮播图图片、单独修改某张图片
<!--pages/swiper/swiper.wxml-->
<text>pages/swiper/swiper.wxml</text>
<!-- 滑块视图 先添加一个滑块容器 -->
<!-- 是否自动播放 ,增加提示点 ,是否衔接滑动(例如从最后一张到第一张),提示点颜色 -->
<swiper
autoplay="false"
indicator-dots
circular
indicator-color="rgba(0,0,0,1)">
<!-- 添加一个内容 更改轮播图图片 -->
<block wx:for="image" wx:key="this" wx:for-index="ind1">
<!-- 将该for的下标Index命名为ind1 可以不用block,可以直接在swiper-item使用wx:for-->
<swiper-item >
<image src="item" data-ccc="ind1" ></image>
<!-- 将下标给到本地数据库data,并且命名ccc -->
</swiper-item >
</block>
</swiper>
<button bindtap="getImg">更改轮播图的图片</button>
<button bindtap="getc">在轮播图最后面添加一个图片</button>
<!-- 单独换图片 -->
<swiper indicator-dots
indicator-color="rgba(20,0,225,1)"
next-margin="20px"
previous-margin="20px"
autoplay
bindchange="pdd">
<swiper-item wx:for="imgArr" wx:key="this" > <!-- 循环imgArr里的内容 -->
<image src="item" bindtap="getima" data-cc="index" >
<!--image src="item含义: imgArr变量里的内容,如本文定义的图片地址 -->
<!-- 将下标给到本地数据库data,并且命名cc -->
</image>
</swiper-item >
</swiper>
复制代码
Page(
/**
* 页面的初始数据
*/
data:
image: ["/images/0.jpg", "/images/1.jpg", "/images/2.jpeg"],
imgArr:["/images/0.jpg", "/images/1.jpg", "/images/2.jpeg"],
pdd:0,
,
getImg()
var _this = this;
wx.chooseImage(
count: 3, //选择1张,最多选择9张
sizeType: ['original', 'compressed'], //是否原图
sourceType: ['album', 'camera'], //是否用相机还是相册
success(res)
// tempFilePath可以作为img标签的src属性显示图片
const tempFilePaths = res.tempFilePaths
_this.setData(
image: res.tempFilePaths,
)
)
,
getc()
var acc=this;
wx.chooseImage(
count: 1, //选择1张,最多选择9张
sizeType: ['original', 'compressed'], //是否原图
sourceType: ['album', 'camera'], //是否用相机还是相册
success(res)
// tempFilePath可以作为img标签的src属性显示图片
const tempFilePaths = res.tempFilePaths
console.log(tempFilePaths);
acc.data.image.push([tempFilePaths.toString()])
// 在数组image后面增加图片
console.log(acc.data.image);
acc.setData(
image:acc.data.image
)
)
,
getima(e)
var _this=this;
//1.拿到我点击的图片下标
console.log(e);
// //2.把下标赋值给ac
var ac=parseInt(e.currentTarget.dataset.cc);
// console.log(ac);
// console.log(this.data.pdd);
wx.chooseImage(
count: 3, //选择1张,最多选择9张
sizeType: ['original', 'compressed'], //是否原图
sourceType: ['album', 'camera'], //是否用相机还是相册
success(res)
// tempFilePath可以作为img标签的src属性显示图片
const tempFilePaths = res.tempFilePaths
// 3.将选择的图片的路径,赋值给imgArr
_this.data.imgArr[ac]=res.tempFilePaths[0]
// _this.data.imgArr[_this.data.pdd]=res.tempFilePaths[0]
_this.setData(
//4.将存在_this.data.imgArr的路径,赋值到imgArr
imgArr: _this.data.imgArr,
)
)
,
pdd(e)
// console.log(e.detail.current);
this.setData(
pdd:e.detail.current
)
)
复制代码
这里pdd(e)使用的是第二种方法(不需要可以删除),将所要修改的图片信息赋值给data:定义的pdd,此时_this.data.imgArr[_this.data.pdd]=res.tempFilePaths[0]这行里的_this.data.pdd为轮播图里的第几个图片,将要替换的图片的数据,替换近imArr[]里的第几个(_this.data.pdd)图片,最后_this.setData进行替换
通过console.log输出的数据,看到将下标写入了本地数据,并且命名为cc
微信小程序的轮播图swiper问题
微信小程序的轮播图swiper,调用后,怎样覆盖系统的 点,达到自己想要的效果
不多说,先上一图望大家多给意见:
这个是效果图:
微信小程序效果图就成这样子:
<view class="section section_gap swiper">
<swiper indicator-dots="{{indicatorDots}}" vertical="{{vertical}}"
autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
<block wx:for="{{banner}}">
<swiper-item >
<navigator url="../../pages/lists/lists" hover-class="navigator-hover">
<image src="{{item}}" class="swiper-item "></image>
</navigator>
</swiper-item>
</block>
</swiper>
</view>
在样式里怎么也修改不了,那里面的点的样式,达不到自己想要的效果,
点在repeat里面,我修改 .swiper repeat{width:8rpx; height:8rpx;background:rgba(255,255,255,.5);border-radius:50%;}
改变的是背景 如图:
请哪位高手多多指点一下,谢谢,也希望我有什么帮助你的,一同学习,谢谢
以上是关于小程序中的轮播图的主要内容,如果未能解决你的问题,请参考以下文章