真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

TaroUI框架開發(fā)小程序如何實現(xiàn)左滑喜歡右滑不喜歡效果

這篇文章主要為大家展示了Taro UI框架開發(fā)小程序如何實現(xiàn)左滑喜歡右滑不喜歡效果,內(nèi)容簡而易懂,希望大家可以學習一下,學習完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。

創(chuàng)新互聯(lián)公司不只是一家網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司;我們對營銷、技術(shù)、服務(wù)都有自己獨特見解,公司采取“創(chuàng)意+綜合+營銷”一體化的方式為您提供更專業(yè)的服務(wù)!我們經(jīng)歷的每一步也許不一定是最完美的,但每一步都有值得深思的意義。我們珍視每一份信任,關(guān)注我們的做網(wǎng)站、成都網(wǎng)站設(shè)計質(zhì)量和服務(wù)品質(zhì),在得到用戶滿意的同時,也能得到同行業(yè)的專業(yè)認可,能夠為行業(yè)創(chuàng)新發(fā)展助力。未來將繼續(xù)專注于技術(shù)創(chuàng)新,服務(wù)升級,滿足企業(yè)一站式全網(wǎng)營銷推廣需求,讓再小的品牌網(wǎng)站制作也能產(chǎn)生價值!

Taro 就是可以用 React 語法寫小程序的框架,擁有多端轉(zhuǎn)換能力,一套代碼可編譯為微信小程序、百度小程序、支付寶小程序、H5、RN等

摘要:

年后入職了一家新公司,與前同事交接完之后,發(fā)現(xiàn)公司有一個四端的項目(iOS,Android,H5,小程序),iOS和安卓都實現(xiàn)了左滑右滑的效果,而h6和小程序端沒實現(xiàn),詢問得知前同事因網(wǎng)上沒找到對應(yīng)的插件,相關(guān)博客也特別少,所以沒做就擱置下來了。

趁這段時間相對來說比較富裕,于是乎在網(wǎng)上也搜索了一下,發(fā)現(xiàn)確實很少,但是有人提到可以用小程序可拖動組件movable-view來實現(xiàn),自己嘗試來一下發(fā)現(xiàn)可行,于是來寫這篇博客記錄一下,希望能幫助到后面需要用到這個功能的人!

先上效果圖:

Taro UI框架開發(fā)小程序如何實現(xiàn)左滑喜歡右滑不喜歡效果

主要技術(shù):Taro+Taro UI+React(如果你是小程序原生或者uniapp+vue寫法都差不多,可以通用)

可拖動組件文檔地址:

Taro:https://taro-docs.jd.com/taro/docs/components/viewContainer/movable-view.html

微信小程序:https://developers.weixin.qq.com/miniprogram/dev/component/movable-view.html

思路:

一,我們首先把movable-area和movable-view標簽寫出來;


 
 ......
 

二,我們可以看到文檔里面有一個onChange方法,即拖動過程中觸發(fā)的事件;


 
 ......
 


// 觸發(fā)方法,打印參數(shù)
onChange(e) {
 console.log('參數(shù)',e);
}

我們可以看到打印出了,拖動的位置和產(chǎn)生移動的原因等;

三,我們接著加入開始onTouchstart,移動onTouchmove,結(jié)束onTouchcancel,onTouchend三個事件方法;

 
<--中間加入圖片之類的滑動內(nèi)容-->

初始數(shù)據(jù)如下:

state = { 
 x: '16', 
 y: '16', 
 like: false, 
 unlike: false, 
 shopList: [ 
 { 
 img: 'https://edgefix-image.edgecom.top/ABD846F6672997A7F76CD38E8A57F954.jpg', 
 }, 
 { 
 img: 'https://edgefix-image.edgecom.top/F6E5801C304CC76DA63C02C9FB38B8F4.jpg', 
 }, 
 { 
 img: 'https://edgefix-image.edgecom.top/D518952AD1DD61B2D32556E20CC527C4.jpg', 
 }, 
 { 
 img: 'https://edgefix-image.edgecom.top/1D187E28B349679908A44BBE81F3D3CA.jpg', 
 }, 
 { 
 img: 'https://edgefix-image.edgecom.top/1129A411AC9CF5F81187CBED181B6F57.jpg', 
 } 
 ] 
 }

三個方法我們可以取到移動后改變的位置,來改變喜歡與不喜歡的狀態(tài)css,以及實現(xiàn)卡片滑動的效果:

1.觸摸觸發(fā)的時候,我們獲取到剛剛開始觸摸卡片的x,y的位置坐標;

2.在觸摸滑動時,我們通過滑動后的位置-滑動前的位置,來判斷距離多少來改變喜歡和不喜歡的值;

3.當手離開時,觸發(fā)取消事件,我們需要把狀態(tài)數(shù)據(jù)改為原始值,即回到最初的狀態(tài);

// 觸摸觸發(fā) 
 onTouchStart(e) { 
 console.log('222',e.touches[0].pageX); 
 this.setState({ 
 x: e.touches[0].pageX, 
 y: e.touches[0].pageY, 
 }); 
 } 
 // 觸摸移動 
 onTouchMove(e) { 
 console.log('333',e.touches[0].pageX); 
 let dx = e.touches[0].pageX - this.state.x; 
 if (dx > 50) { 
 this.setState({ 
 like: true, 
 unlike: false, 
 }); 
 } else if (dx < -50) { 
 this.setState({ 
 like: false, 
 unlike: true, 
 }); 
 } else { 
 this.setState({ 
 like: false, 
 unlike: false, 
 }); 
 } 
 } 
 // 取消 
 onCancel(e) { 
 console.log('444',e.changedTouches[0].pageX); 
 this.setState({ 
 x: '16', 
 y: '16', 
 like: false, 
 unlike: false, 
 }); 
 }

當我們寫到這里,我們?nèi)ネ蟿游覀兊目ㄆ瑫r,你會發(fā)現(xiàn)確實可以拖動,并且取消的時候會回到原點,但是同樣你也會發(fā)現(xiàn)一個問題,就是你拖動的時候,五張卡片都被觸發(fā)來移動的效果,出現(xiàn)了觸點混亂的問題,查找問題發(fā)現(xiàn)卡片共用了x,y,因此我們可以給每張卡片設(shè)置獨立的參數(shù);

四,給每張卡片獨立的參數(shù)并且設(shè)置卡片傾斜度效果;

1.設(shè)置傾斜度效果

style={{transform:'rotate('+this.state.tiltAngle[index]+'deg)'}}

然后我們通過卡片移動位置計算出一個你決定合適的傾斜角度;

// 拖動后相差距離進行換算角度
let dxangle = (e.touches[0].pageX - this.state.startX) * 45 / 500;

2.設(shè)置獨立的參數(shù)

方法攜帶索引,我們?nèi)〉綄?yīng)的卡片index,來改變對應(yīng)卡片的數(shù)據(jù);


同時,我們需要改變初始參數(shù)的形式為數(shù)組,我們通過索引改變對應(yīng)卡片的值;

state = {
 // 開始位置
 startX: '',
 // 開始位置-最終位置距離
 placeX: '',
 // 傾斜角度
 tiltAngle: ['0','0','0','0','0'],
 // 坐標
 x: ['16','16','16','16','16'],
 y: ['16','16','16','16','16'],
 // 是否喜歡狀態(tài)
 like: [false,false,false,false,false],
 unlike: [false,false,false,false,false],
 // 推薦商品數(shù)組
 shopList: [
 {
 id: 1,
 img: 'https://edgefix-image.edgecom.top/ABD846F6672997A7F76CD38E8A57F954.jpg',
 },
 {
 id: 2,
 img: 'https://edgefix-image.edgecom.top/F6E5801C304CC76DA63C02C9FB38B8F4.jpg',
 },
 {
 id: 3,
 img: 'https://edgefix-image.edgecom.top/D518952AD1DD61B2D32556E20CC527C4.jpg',
 },
 {
 id: 4,
 img: 'https://edgefix-image.edgecom.top/1D187E28B349679908A44BBE81F3D3CA.jpg',
 },
 {
 id: 5,
 img: 'https://edgefix-image.edgecom.top/1129A411AC9CF5F81187CBED181B6F57.jpg',
 }
 ]
 }

方法我們就舉一個例子,比如onTouchStart方法,我們遍歷卡片數(shù)組,通過判斷索引來得到是那張卡片,從而來改變對應(yīng)值

// 觸摸觸發(fā)
 onTouchStart(index,e) {
 console.log('1111',index,e.touches[0].pageX,e.touches[0].pageY);
 // 重定義數(shù)組
 var againX = [];
 var againY = [];
 // 遍歷,判斷拖動的該數(shù)組的位置
 for (var i=0; i

這樣,我們運行代碼,發(fā)現(xiàn)拖動第一張卡片不會影響到后面卡片的位置了,

同時,我們現(xiàn)在拖動卡片刪除的是數(shù)組,在實際項目中,我們在觸發(fā)刪除數(shù)組的地方接入接口,調(diào)用喜歡,不喜歡改變數(shù)據(jù)參數(shù),從而也能改變數(shù)組的長度;

五,完整代碼;

下面我將貼出完整的代碼供大家參考

html文件:

import Taro, { Component } from '@tarojs/taro';
import { View, Image, Button, Text, MovableArea, MovableView } from '@tarojs/components';
import { observer, inject } from '@tarojs/mobx';
import { AtButton, AtFloatLayout } from 'taro-ui';
import userStore from '../../store/user.store';
import './stroll.scss';
@inject('userStore')
@observer
class Stroll extends Component {
 config = {
 navigationBarTitleText: '逛',
 }
 state = {
 // 開始位置
 startX: '',
 // 開始位置-最終位置距離
 placeX: '',
 // 傾斜角度
 tiltAngle: ['0','0','0','0','0'],
 // 坐標
 x: ['16','16','16','16','16'],
 y: ['16','16','16','16','16'],
 // 是否喜歡狀態(tài)
 like: [false,false,false,false,false],
 unlike: [false,false,false,false,false],
 // 推薦商品數(shù)組
 shopList: [
 {
 id: 1,
 img: 'https://edgefix-image.edgecom.top/ABD846F6672997A7F76CD38E8A57F954.jpg',
 },
 {
 id: 2,
 img: 'https://edgefix-image.edgecom.top/F6E5801C304CC76DA63C02C9FB38B8F4.jpg',
 },
 {
 id: 3,
 img: 'https://edgefix-image.edgecom.top/D518952AD1DD61B2D32556E20CC527C4.jpg',
 },
 {
 id: 4,
 img: 'https://edgefix-image.edgecom.top/1D187E28B349679908A44BBE81F3D3CA.jpg',
 },
 {
 id: 5,
 img: 'https://edgefix-image.edgecom.top/1129A411AC9CF5F81187CBED181B6F57.jpg',
 }
 ]
 }
 componentWillMount () { }
 componentWillReact () { }
 componentDidMount () {
 }
 // 觸摸觸發(fā)
 onTouchStart(index,e) {
 console.log('1111',index,e.touches[0].pageX,e.touches[0].pageY);
 // 重定義數(shù)組
 var againX = [];
 var againY = [];
 // 遍歷,判斷拖動的該數(shù)組的位置
 for (var i=0; i 50) {
 tiltAngleT[i] = dxangle,
 againX[i] = true;
 againY[i] = false;
 } else if (i == index && dxplace <= -50) {
 tiltAngleT[i] = dxangle,
 againX[i] = false;
 againY[i] = true;
 } else if (i == index && dxplace < 50 && dxplace > -50) {
 tiltAngleT[i] = dxangle,
 againX[i] = false;
 againY[i] = false;
 } else {
 tiltAngleT[i] = '0',
 againX[i] = false;
 againY[i] = false;
 }
 }
 // 賦值
 this.setState({
 placeX: dxplace,
 tiltAngle: tiltAngleT,
 like: againX,
 unlike: againY,
 });
 }
 // 取消
 onCancel(index,e) {
 console.log('3333',index,e.changedTouches[0].pageX,e.changedTouches[0].pageY);
 // 賦值
 this.setState({
 tiltAngle: ['0','0','0','0','0'],
 x: ['16','16','16','16','16'],
 y: ['16','16','16','16','16'],
 like: [false,false,false,false,false],
 unlike: [false,false,false,false,false],
 });
 // 如果偏移已經(jīng)達到則清除第一張圖片
 if (this.state.placeX > 50 || this.state.placeX < -50) {
 this.setState({
 shopList: this.state.shopList.splice(1,4),
 });
 }
 }
 // 不喜歡按鈕點擊
 dislikebtn() {
 // 改變按鈕的狀態(tài)以及圖片位置及顯示
 this.setState({
 tiltAngle: ['-18','0','0','0','0'],
 x: ['-30','16','16','16','16'],
 y: ['267','16','16','16','16'],
 unlike: [true,false,false,false,false],
 }, () => {
 setTimeout( () => {
 this.setState({
  tiltAngle: ['0','0','0','0','0'],
  x: ['16','16','16','16','16'],
  y: ['16','16','16','16','16'],
  unlike: [false,false,false,false,false],
  shopList: this.state.shopList.splice(1,4),
 });
 },100);
 });
 }
 // 喜歡按鈕點擊
 likebtn() {
 // 改變按鈕的狀態(tài)以及圖片位置及顯示
 this.setState({
 tiltAngle: ['18','0','0','0','0'],
 x: ['284','16','16','16','16'],
 y: ['267','16','16','16','16'],
 like: [true,false,false,false,false],
 }, () => {
 setTimeout( () => {
 this.setState({
  tiltAngle: ['0','0','0','0','0'],
  x: ['16','16','16','16','16'],
  y: ['16','16','16','16','16'],
  like: [false,false,false,false,false],
  shopList: this.state.shopList.splice(1,4),
 });
 },100);
 });
 }
 componentWillUnmount () { }
 componentDidShow () {
 }
 componentDidHide () { }
 render() {
 return (
 
 
  搭配師每天為你推薦5件單品
  
  右滑喜歡
  
  ,左滑不喜歡
  
  
 
 {
  this.state.shopList.length != 0&&
  
  {
  this.state.shopList&&this.state.shopList.map((item,index) => {
  return(
  
   
   
   {
   this.state.like[index]==true&&
   
   }
   {
   this.state.unlike[index]==true&&
   
   }
   
  
  );})
  }
  
 }
 {
  this.state.shopList.length === 0&&
  
  
  
 }
 
  {
  this.state.shopList.length != 0&&
  
  {
  this.state.unlike[0]==false&&
  
  }
  {
  this.state.unlike[0]==true&&
  
  }
  {
  this.state.like[0]==false&&
  
  }
  {
  this.state.like[0]==true&&
  
  }
  
  }
  查看我喜歡的
 
 
 );
 }
}
export default Stroll;

css文件:

page {
 height: 100%;
 background: #F6F6F6;
}
.stroll-tab {
 width: 100%;
 min-height: 100vh;
 background: #F6F6F6;
 .stroll-text {
 width: 100%;
 margin-top: 40px;
 display: flex;
 flex-direction: column;
 align-items: center;
 .text-tip1 {
 font-size: 28px;
 color: #333333;
 }
 .text-tip2 {
 display: flex;
 flex-direction: row;
 align-items: center;
 .t1 {
 font-size: 28px;
 color: #333333;
 }
 .icon-image {
 width:20px;
 height:20px;
 }
 }
 }
 .stroll-shop {
 width: 100%;
 height: 700px;
 margin-top: 40px;
 .shop-imgbox {
 height: 600px;
 border-radius: 24px;
 .images-box {
 width: 100%;
 height: 520px;
 border-radius: 24px;
 box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
 background-color: #fff;
 position: relative;
 .images {
  width: 606px;
  height: 480px;
  position: absolute;
  left: 40px;
  top: 20px;
 }
 .imagelike {
  width: 96px;
  height: 48px;
  position: absolute;
  right: 40px;
  top: 20px;
 }
 .imageunlike {
  width: 148px;
  height: 48px;
  position: absolute;
  left: 40px;
  top: 20px;
 }
 }
 }
 .shop-imgbox:nth-child(1) {
 width: 686px;
 z-index: 50;
 }
 .shop-imgbox:nth-child(2) {
 width: 676px;
 z-index: 40;
 margin: 15px 0px 0px 5px;
 }
 .shop-imgbox:nth-child(3) {
 width: 666px;
 z-index: 30;
 margin: 30px 0px 0px 10px;
 }
 .shop-imgbox:nth-child(4) {
 width: 656px;
 z-index: 20;
 margin: 0px 0px 0px 15px;
 }
 .shop-imgbox:nth-child(5) {
 width: 646px;
 z-index: 10;
 margin: 0px 0px 0px 20px;
 }
 }
 .noshop-card {
 width: 100%;
 margin-top: 40px;
 padding: 0px 16px;
 .noshop-image {
 width: 100%;
 height: 806px;
 }
 }
 .stroll-fotter {
 width: 100%;
 display: flex;
 flex-direction: column;
 align-items: center;
 margin-top: 20px;
 .fot-twoimg {
 display: flex;
 flex-direction: row;
 align-items: center;
 .dislike-image {
 width: 120px;
 height: 120px;
 }
 .like-image {
 width: 120px;
 height: 120px;
 margin-left: 48px;
 }
 }
 .fot-text {
 color: #368BE5;
 font-size: 28px;
 margin-top: 40px;
 margin-bottom: 50px;
 }
 }
}

以上就是關(guān)于Taro UI框架開發(fā)小程序如何實現(xiàn)左滑喜歡右滑不喜歡效果的內(nèi)容,如果你們有學習到知識或者技能,可以把它分享出去讓更多的人看到。


網(wǎng)頁標題:TaroUI框架開發(fā)小程序如何實現(xiàn)左滑喜歡右滑不喜歡效果
文章位置:http://weahome.cn/article/jchgji.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部