极乐门资源网 Design By www.ioogu.com
小程序层叠卡片滑动效果,供大家参考,具体内容如下
效果图
wxml
<!-- 轮播wxml代码 --> <view class="teachers_banner"> <view class="lunbo_center clearfix teachers_b"> <view class="slide" id="slide" bindtouchstart='moveStart' bindtouchend='moveItem'> <ul> <block wx:for="{{datas}}" wx:key> <li animation="{{item.animation}}" style="z-index: {{item.zIndex}} ;opacity:{{item.opacity}};" bindtap="choose" data-id="{{item.id}}"> <image src="/UploadFiles/2021-04-02/{{item.iamge}}">wxss
/*轮播图片*/ .lunbo_center { display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 50rpx 0; box-sizing: border-box; } .teachers_b { position: relative; } #slide { margin: 0 auto; width: 100%; height: 160px; position: relative; } #slide li { position: absolute; width: 600rpx; height: 300rpx; display: -webkit-box; display: -webkit-flex; display: flex; align-items: flex-start; -webkit-box-align: flex-start; -webkit-align-items: flex-start; background: #fff; overflow: hidden; box-shadow: 0 0 20px #1d374d; } #slide li image { width: 100%; height: 100%; } .slide_left { width: 240px; } .slide_right { padding: 40px; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; min-width: 0; } .slide_right h3 { font: 400 30px/18px "Microsoft Yahei"; color: #222; } .slide_right h3 span { display: inline-block; margin-left: 10px; font: 400 14px/36px "Microsoft Yahei"; color: #555; } .slide_right p { padding: 20px 0 30px; color: #555; font: 400 14px/24px "Microsoft Yahei"; border-bottom: 1px solid #dbdbdb; } .slide_right dl { padding-top: 30px; } .slide_right dd { /* float: left; */ width: 33.3%; color: #777; font: 400 12px/24px "Microsoft Yahei"; } .slide_right dd h3 { color: #ff9000; margin-bottom: 20px; } .arrow { display: none; } .arrow .prev, .arrow .next { position: absolute; width: 64px; top: 38%; z-index: 9; font: 700 96px 'simsun'; opacity: 0.3; color: #fff; cursor: pointer; } .arrow .prev { left: -220px; } .arrow .next { right: -220px; } .arrow .prev:hover, .arrow .next:hover { color: #00a0e9; opacity: 0.7; }js
// js代码 Page({ /** * 页面的初始数据 */ data: { startX: 0, endX: 0, iCenter: 3, datas: [{ id: 1, zIndex: 2, opacity: 0.2, left: 10, iamge: "../../icon/lunbo2.jpg", animation: null }, { id: 2, zIndex: 4, opacity: 0.4, left: 20, iamge: "../../icon/lunbo3.jpg", animation: null }, { id: 3, zIndex: 6, opacity: 0.6, left: 30, iamge: "../../icon/lunbo4.jpg", animation: null }, { id: 4, zIndex: 8, opacity: 1, left: 40, iamge: "../../icon/lunbo1.jpg", animation: null }, { id: 5, zIndex: 6, opacity: 0.6, left: 50, iamge: "../../icon/lunbo2.jpg", animation: null }, { id: 6, zIndex: 4, opacity: 0.4, left: 60, iamge: "../../icon/lunbo3.jpg", animation: null } , { id: 7, zIndex: 2, opacity: 0.2, left: 70, iamge: "../../icon/lunbo1.jpg", animation: null } ], order: [] }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { this.__set__(); this.move(); }, move: function () { var datas = this.data.datas; /*图片分布*/ for (var i = 0; i < datas.length; i++) { var data = datas[i]; var animation = wx.createAnimation({ duration: 100 }); animation.translateX(data.left).step(); this.setData({ ["datas[" + i + "].animation"]: animation.export(), ["datas[" + i + "].zIndex"]: data.zIndex, ["datas[" + i + "].opacity"]: data.opacity, }) } }, /**左箭头 */ left: function () { // var last = this.data.datas.pop(); //获取数组的最后一个 this.data.datas.unshift(last);//放到数组的第一个 var orderFirst = this.data.order.shift(); this.data.order.push(orderFirst); this.move(); }, /** */ right: function () { var first = this.data.datas.shift(); //获取数组的第一个 this.data.datas.push(first);//放到数组的最后一个位置 var orderLast = this.data.order.pop(); this.data.order.unshift(orderLast); this.move(); }, /**点击某项 */ choose: function (e) { var that = this; var id = e.currentTarget.dataset.id; var order = that.data.order; var index = 0; for (var i = 0; i < order.length; i++) { if (id == order[i]) { index = i; break; } } if (index < that.data.iCenter) { for (var i = 0; i < that.data.iCenter - index; i++) { this.data.datas.push(this.data.datas.shift()); //获取第一个放到最后一个 this.data.order.unshift(this.data.order.pop()); // this.right() } } else if (index > that.data.iCenter) { for (var i = 0; i < index - that.data.iCenter; i++) { this.data.datas.unshift(this.data.datas.pop()); //获取最后一个放到第一个 this.data.order.push(this.data.order.shift()); // this.left(); } } this.move(); }, /**新的排列复制到新的数组中 */ __set__: function () { var that = this; var order = that.data.order; var datas = that.data.datas; for (var i = 0; i < datas.length; i++) { that.setData({ ["order[" + i + "]"]: datas[i].id }) } }, //手指触发开始移动 moveStart: function (e) { console.log(e); var startX = e.changedTouches[0].pageX; this.setData({ startX: startX }); }, //手指触摸后移动完成触发事件 moveItem: function (e) { console.log(e); var that = this; var endX = e.changedTouches[0].pageX; this.setData({ endX: endX }); //计算手指触摸偏移剧距离 var moveX = this.data.startX - this.data.endX; //向左移动 if (moveX > 20) { this.left(); } if (moveX < -20) { this.right(); } }, })欢迎参考!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
极乐门资源网 Design By www.ioogu.com
极乐门资源网
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
极乐门资源网 Design By www.ioogu.com
暂无小程序实现层叠卡片滑动效果的评论...
更新日志
2024年12月27日
2024年12月27日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]