当前位置:   article > 正文

微信小程序实现左滑删除_小程序左滑删除

小程序左滑删除

一、效果

二、代码

  实现思路使用的是官方提供的movable-area 嵌套movable-view

1、movable-area:注意点,需要设置其高度,否则会出现列表内容重叠的现象。

2、由于movable-view需要向右移动,左滑的时候给删除控件展示的空间,故 movable-area 需要左移 left: -120rpx;

3、movable-view右移left: 120rpx;。 通过 width: calc(100% - 120rpx);左划的距离。

4、 需要给movable-view组件设置层级 z-index: 1001;越高越好至少比删除组件层级高,避免被遮住。

 5、 <view class="itemDelet">删除</view> 的位于movable-view组件右下,左滑movable-view显示处删除组件。

.moveArea {
  display: flex;
  flex-direction: row;
  width: calc(100% + 120rpx);
  justify-content: center;
  left: -120rpx;
  height: 188rpx;
}
 

movable-view

.movableView {
  display: flex;
  flex-direction: row;
  width: calc(100% - 120rpx);
  z-index: 1001;
  left: 120rpx;
}

源代码如下:

  1. Page({
  2. /**
  3. * 页面的初始数据
  4. */
  5. data: {
  6. pushedData:[{messageTitle:'饼干',messageContent:'饼干爱吃'}],//已推送数据
  7. },
  8. /**
  9. * 生命周期函数--监听页面加载
  10. */
  11. onLoad() {
  12. },
  13. /**
  14. * 生命周期函数--监听页面初次渲染完成
  15. */
  16. onReady() {
  17. },
  18. /**
  19. * 生命周期函数--监听页面显示
  20. */
  21. onShow() {
  22. },
  23. /**
  24. * 生命周期函数--监听页面隐藏
  25. */
  26. onHide() {
  27. },
  28. /**
  29. * 生命周期函数--监听页面卸载
  30. */
  31. onUnload() {
  32. },
  33. /**
  34. * 页面相关事件处理函数--监听用户下拉动作
  35. */
  36. onPullDownRefresh() {
  37. },
  38. /**
  39. * 页面上拉触底事件的处理函数
  40. */
  41. onReachBottom() {
  42. },
  43. /**
  44. * 用户点击右上角分享
  45. */
  46. onShareAppMessage() {
  47. },
  48. // 退出页面
  49. logout:function(){
  50. wx.navigateBack({})
  51. },
  52. })

xml代码

  1. <!--pakage_kindness_remind/pages/kindess_msg_remind/kindness_msg_remind_pg.wxml-->
  2. <!-- head -->
  3. <view class="title_search">
  4. <view class="seeck_md">
  5. <!-- 返回 -->
  6. <view class="logout" bindtap="logout">
  7. <image class="logout_ic" src="/images/msg/return_back.png">
  8. </image>
  9. <text class="logout_txt">返回</text>
  10. </view>
  11. <!--内容模板-->
  12. <view class="msg_title_center">
  13. <view class="msg" bindtap="open_msg">
  14. <text class="msg_txt">数据中心</text>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="logout">
  19. <image class="logout_ic">
  20. </image>
  21. <text class="logout_txt"></text>
  22. </view>
  23. </view>
  24. <!-- body -->
  25. <scroll-view class='scbg' scroll-y='true'>
  26. <block wx:for="{{pushedData}}" wx:key="id" wx:for-item="itemName" wx:for-index="id">
  27. <!-- 子item父布局 -->
  28. <view class="item_parent">
  29. <!-- 日期 45日 周二 8:00 -->
  30. <view class="date" wx:if="{{id==0}}">{{itemName.pushTime}} </view>
  31. <!-- -->
  32. <movable-area class="moveArea">
  33. <movable-view class="movableView" direction="horizontal" inertia="{{true}}" out-of-bounds="{{true}}">
  34. <view style="display: flex;flex-direction: row;width: 100%;height: 100%;">
  35. <view class="box_item">
  36. <!--head布局-->
  37. <view class="head_layout">
  38. <!-- itemhead左边模块 天气提醒-->
  39. <view class="head_title">
  40. {{itemName.messageTitle}}
  41. </view>
  42. </view>
  43. <!--body布局-->
  44. <view class="body_layout">
  45. {{itemName.messageContent}}
  46. </view>
  47. </view>
  48. </view>
  49. </movable-view>
  50. <view class="itemDelet">删除</view>
  51. </movable-area>
  52. </view>
  53. </block>
  54. </scroll-view>

css代码

  1. /* pakage_kindness_remind/pages/kindess_msg_remind/kindness_msg_remind_pg.wxss */
  2. Page {
  3. background: #f0f0f0;
  4. height: 100%;
  5. position: fixed;
  6. }
  7. /* 头部搜索 */
  8. /* 搜索标题 */
  9. .title_search {
  10. background: linear-gradient(to right, #0455a7, #62c8ec);
  11. height: 170rpx;
  12. width: 100%;
  13. display: flex;
  14. flex-direction: row;
  15. align-items: flex-end;
  16. justify-content: flex-start;
  17. }
  18. .seeck_md {
  19. display: flex;
  20. flex-direction: row;
  21. width: 100%;
  22. justify-content: flex-start;
  23. align-items: flex-end;
  24. }
  25. /* 消息 */
  26. .msg {
  27. width: 180rpx;
  28. height: 90rpx;
  29. display: flex;
  30. flex-direction: column;
  31. justify-content: center;
  32. align-items: center;
  33. margin-right: 0rpx;
  34. margin-left: 30rpx;
  35. }
  36. .msg_title_center {
  37. width: 100%;
  38. display: flex;
  39. flex-direction: row;
  40. justify-content: center;
  41. }
  42. .msg_txt {
  43. font-size: 36rpx;
  44. height: 80rpx;
  45. width: 160rpx;
  46. margin-bottom: 20rpx;
  47. align-items: center;
  48. color: #fff;
  49. display: flex;
  50. justify-content: center;
  51. }
  52. /* 返回 */
  53. .logout {
  54. width: 100rpx;
  55. height: 90rpx;
  56. display: flex;
  57. flex-direction: column;
  58. justify-content: center;
  59. align-items: center;
  60. margin-right: 20rpx;
  61. margin-left: 30rpx;
  62. }
  63. .logout_ic {
  64. height: 44rpx;
  65. width: 48rpx;
  66. margin-right: 2rpx;
  67. }
  68. .logout_txt {
  69. font-size: 24rpx;
  70. height: 40rpx;
  71. width: 60rpx;
  72. margin-bottom: 10rpx;
  73. align-items: flex-start;
  74. color: #fff;
  75. display: flex;
  76. justify-content: flex-start;
  77. }
  78. /* 搜索标题 */
  79. /* 头部搜索 */
  80. /* body */
  81. .scbg {
  82. background-color: #f0f0f0;
  83. width: 100%;
  84. height: calc(100vh - 180rpx);
  85. left: 0rpx;
  86. right: 0rpx;
  87. top: 0rpx;
  88. padding-bottom: 120rpx;
  89. }
  90. /* item条目布局 */
  91. /* item父布局 */
  92. .item_parent {
  93. margin-top: 20rpx;
  94. }
  95. .date {
  96. display: flex;
  97. align-items: center;
  98. justify-content: center;
  99. color: #999999;
  100. font-size: 28rpx;
  101. margin-bottom: 10rpx;
  102. }
  103. /* item盒子 */
  104. .box_item {
  105. background-color: #fff;
  106. margin-left: 25rpx;
  107. margin-right: 25rpx;
  108. border-radius: 20rpx;
  109. flex-direction: column;
  110. width: 100%;
  111. height: 160rpx;
  112. display: flex;
  113. }
  114. /* item模块时间 */
  115. /* item上部分布局 */
  116. .head_layout {
  117. height: 60rpx;
  118. border-radius: 20rpx;
  119. margin-right: 20rpx;
  120. display: flex;
  121. flex-direction: row;
  122. justify-content: space-between;
  123. align-items: center;
  124. }
  125. /* 标题 */
  126. .head_title {
  127. width: 160rpx;
  128. display: flex;
  129. align-items: center;
  130. justify-content: flex-start;
  131. margin-left: 20rpx;
  132. color: #06c8ad;
  133. font-size: 28rpx;
  134. font-weight: 800;
  135. }
  136. /* item下部份分布局 */
  137. .body_layout {
  138. background-color: #fff;
  139. padding-bottom: 20rpx;
  140. border-radius: 20rpx;
  141. margin-bottom: 16rpx;
  142. align-items: center;
  143. margin-left: 20rpx;
  144. margin-top: 10rpx;
  145. margin-right: 10rpx;
  146. font-size: 28rpx;
  147. color: #999999;
  148. }
  149. /* 滑动删除移动模块 */
  150. .moveArea {
  151. display: flex;
  152. flex-direction: row;
  153. width: calc(100% + 120rpx);
  154. justify-content: center;
  155. left: -120rpx;
  156. height: 188rpx;
  157. }
  158. /* 滑动删除模块 */
  159. .movableView {
  160. display: flex;
  161. flex-direction: row;
  162. width: calc(100% - 120rpx);
  163. z-index: 1001;
  164. left: 120rpx;
  165. }
  166. /* item删除 */
  167. .itemDelet {
  168. position: absolute;
  169. right: 30rpx;
  170. line-height: 160rpx;
  171. background-color: #62c8ec;
  172. margin-top: 0rpx;
  173. margin-right: 6rpx;
  174. border-bottom-right-radius: 20rpx;
  175. border-top-right-radius: 20rpx;
  176. width: 120rpx;
  177. text-align: right;
  178. padding-right: 20rpx;
  179. color: #fff;
  180. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/650151
推荐阅读
相关标签
  

闽ICP备14008679号