微信小程序实现拖拽盒子效果

server/2025/1/12 6:59:14/

要实现一个当前盒子高度由里面的盒子进行支配高度拖拽的效果

// wxml<view class="exmation-item" wx:elif="{{type==4}}">
<view class="exmation-item-drag-box"  id="drag-box"> <!-- 内容 --><view class="exmation-item-main"  style="height: {{topHeight}}px; "></view><!-- 拖动    --><view class="exmation-item-box"   style="height: {{bottomHeight}}px;" >
<view class="exmation-item-box-top"   
bindtouchstart="onTouchStart" 
bindtouchmove="onTouchMove" 
bindtouchend="onTouchEnd" > 
</view></view></view></view>

less

  .exmation-item-drag-box {height: calc(100vh - 90rpx - 88rpx - constant(safe-area-inset-bottom));height: calc(100vh - 90rpx - 88rpx -  env(safe-area-inset-bottom));overflow: hidden;.exmation-item-main{overflow-y: auto;height: 50%;margin-bottom: 0;}.exmation-item-box{height: 50%;background: #fff;.exmation-item-box-top{height: 100rpx;background: #000;}}}

js

// pages/exmation/index.js
Page({/*** 页面的初始数据*/data: {totalHeight: 0, // 大盒子的总高度(可根据需要调整)topHeight: 0, // 上面盒子的初始高度bottomHeight: 0, startY: 0, // 触摸开始时的Y坐标dragging: false, // 是否正在拖动},// 获取当前页面的高度getHeight() {const query = wx.createSelectorQuery();query.select('#drag-box').boundingClientRect( (rect) =>{// rect.height 就是盒子的高度console.log(rect.height );// 你可以将高度设置到data中以便后续使用this.setData({ totalHeight: rect.height,topHeight:rect.height/2,bottomHeight:rect.height/2});}).exec();},// 拖拽方法onTouchStart(e) {this.setData({startY: e.touches[0].clientY,dragging: true,});},onTouchMove(e) {if (!this.data.dragging) return;const moveY = e.touches[0].clientY;const deltaY = moveY - this.data.startY;let minheight = 50;let height=this.data.bottomHeight - deltaY;if(height>this.data.totalHeight)return;let newBottomHeight = (height < minheight ? minheight : height) const newTopHeight = this.data.totalHeight - newBottomHeight;this.setData({startY: moveY,topHeight: newTopHeight>0?newTopHeight:0,bottomHeight: newBottomHeight>0?newBottomHeight:0,});},onTouchEnd() {this.setData({dragging: false,});},/*** 生命周期函数--监听页面加载*/onLoad(options) {this.getHeight()},})

http://www.ppmy.cn/server/157687.html

相关文章

Scala语言的软件开发工具

Scala语言的软件开发工具 Scala是一种静态类型的编程语言&#xff0c;它结合了面向对象和函数式编程的特性。自2003年由马丁奥德斯基&#xff08;Martin Odersky&#xff09;发明以来&#xff0c;Scala因其简洁的语法和强大的功能&#xff0c;逐渐成为了现代软件开发领域的重要…

Web前端开发入门学习笔记之CSS 57-58--新手超级友好版- 盒子模型以及边框线应用篇

Foreword写在前面的话&#xff1a; 大家好&#xff0c;我是一名刚开始学习HTML的新手。这篇文章是我在学习html过程中的一些笔记和心得&#xff0c;希望能和同样在学习HTML的朋友们分享。由于我的知识有限&#xff0c;文章中可能存在错误或不准确的地方&#xff0c;欢迎大家在评…

SpringBoot开发—— SpringBoot中如何实现 HTTP 请求的线程隔离

文章目录 1、Servlet 容器与线程池管理1.1 线程池的作用1.2 线程池的配置 2、HTTP 请求的线程隔离2.1 请求上下文和会话信息2.2 多线程处理的隔离性 3、 ThreadLocal 和线程上下文隔离3.1ThreadLocal的使用3.2 保证线程隔离性 4、Async异步任务的线程隔离4.1 异步任务的线程池4…

【Redis入门到精通六】在Spring Boot中集成Redis(含配置和操作演示)

目录 Spring Boot中集成Redis 1.项目创建和环境配置 2.基本操作演示 Spring Boot中集成Redis Spring社区也自定义了一套Redis的客户端&#xff0c;与jedis的操作方式有所差异&#xff0c;Spring中把每个类型的操作都单独封装了起来。下面就让我来带大家了解如何在Spring Bo…

python批量删除redis key

生产环境中要禁止使用keys *查询key, 因为redis低版本是单线程&#xff0c;如果key非常多的话&#xff0c;直接使用keys *会导致阻塞&#xff0c;所以应当使用scan命令&#xff0c;scan命令介绍请参考其他文档。 # -*- coding: utf-8 -*- # Time : 2025/01/09 # Author : 养…

常见的http状态码 + ResponseEntity

常见的http状态码 ResponseStatus(HttpStatus.CREATED) 是 Spring Framework 中的注解&#xff0c;用于指定 HTTP 响应状态码。 1. 基本说明 HttpStatus.CREATED 对应 HTTP 状态码 201表示请求成功且创建了新的资源通常用于 POST 请求的处理方法上 2. 使用场景和示例 基本…

25.1.10学习笔记(算法(滑动窗口))

题目&#xff1a;在leetcode上 解释&#xff1a;什么是滑动窗口呢&#xff0c;在这道题里面&#xff0c;子串的长度为k,所以我们就可以将这个子串看为一个窗口&#xff0c;每次去统计窗口里面有多少满足要求&#xff0c;然后进行相关值的加减&#xff0c;滑动就体现在子串的第…

Qt C++读写NFC标签NDEF网址URI

本示例使用的发卡器&#xff1a;https://item.taobao.com/item.htm?spma21dvs.23580594.0.0.1d292c1biFgjSs&ftt&id615391857885 #include "mainwindow.h" #include "ui_mainwindow.h" #include <QDebug> #include "QLibrary" …