IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> uniapp小程序实现横屏手写签名(整理) -> 正文阅读

[JavaScript知识库]uniapp小程序实现横屏手写签名(整理)

<template>
	<view class="signBox">
		<view class="topHint">请在下方空白书写区域内写出您的名字</view>
		<view class="btn">
			<view class="saveBtn" @click="save">确认</view>
			<view class="cancelBtn" @click="clear">清除</view>
		</view>
		<canvas class="canvas" disable-scroll="true" :style="{'width':width,'height':height}" canvas-id="designature"
			@touchstart="starts" @touchmove="moves" @touchend="end"></canvas>
	</view>
</template>

<script>
	export default {
		components: {},
		data() {
			return {
				dom: null,
				line: [],
				radius: 0,
				width: '0rpx',
				height: '0rpx',
			}
		},
		onLoad() {},
		computed: {},
		created() {
			uni.getSystemInfo({
				success: (res) => {
					this.width = res.windowWidth - 60 + 'rpx';
					this.height = res.windowHeight - 56 + 'rpx';
				}
			});
			this.dom = uni.createCanvasContext('designature', this);

		},
		onShow() {},
		methods: {
			end(e) {},
			distance(a, b) {
				let x = b.x - a.x;
				let y = b.y - a.y;
				return Math.sqrt(x * x + y * y);
			},
			// 开始
			starts(e) {
				this.line.push({
					points: [{
						time: new Date().getTime(),
						x: e.touches[0].x,
						y: e.touches[0].y,
						dis: 0
					}]
				})
				let currentPoint = {
					x: e.touches[0].x,
					y: e.touches[0].y
				}
				this.currentPoint = currentPoint
				this.drawer(this.line[this.line.length - 1])
			},
			// 滑动
			moves(e) {
				let point = {
					x: e.touches[0].x,
					y: e.touches[0].y
				}
				this.lastPoint = this.currentPoint,
					this.currentPoint = point
				this.line[this.line.length - 1].points.push({
					time: new Date().getTime(),
					x: e.touches[0].x,
					y: e.touches[0].y,
					dis: this.distance(this.currentPoint, this.lastPoint)
				})
				this.drawer(this.line[this.line.length - 1])
			},
			// 书写
			drawer(item) {
				let x1, x2, y1, y2, len, radius, r, cx, cy, t = 0.5,
					x, y;
				var time = 0;
				if (item.points.length > 2) {
					let lines = item.points[item.points.length - 3];
					let line = item.points[item.points.length - 2];
					let end = item.points[item.points.length - 1];
					x = line.x;
					y = line.y;
					x1 = lines.x;
					y1 = lines.y;
					x2 = end.x;
					y2 = end.y;
					var dis = 0;
					time = (line.time - lines.time) + (end.time - line.time)
					dis = line.dis + lines.dis + end.dis;
					var dom = this.dom;
					var or = Math.min(time / dis * this.linePressure + this.lineMin, this.lineMax);
					cx = (x - (Math.pow(1 - t, 2) * x1) - Math.pow(t, 2) * x2) / (2 * t * (1 - t))
					cy = (y - (Math.pow(1 - t, 2) * y1) - Math.pow(t, 2) * y2) / (2 * t * (1 - t))
					dom.setLineCap('round')
					dom.beginPath();
					dom.setStrokeStyle('black')
					dom.setLineWidth(5)
					dom.moveTo(x1, y1);
					dom.quadraticCurveTo(cx, cy, x2, y2);
					dom.stroke();
					dom.draw(true)
				}
			},
			// 清除
			clear() {
				this.dom.clearRect(0, 0, 1000, 1000)
				this.dom.draw()
			},
			// 保存图片
			save() {
				var t = this;
				uni.canvasToTempFilePath({
					canvasId: 'designature',
					fileType: 'png',
					quality: 1, //图片质量
					success: function(res) {
						t.$emit('getImg', res.tempFilePath)
						console.log(res.tempFilePath, '148')
						// uni.navigateBack({
						//     delta:1
						// })
					},
					fail(e) {
						console.log(e)
					}
				}, this)
			}
		}
	}
</script>

<style scoped lang="less">
	.signBox {
		position: relative;
		overflow: hidden;
		background-color: #F6F6F6;
		height: 100vh;
		width: 100vw;
	
		.canvas {
			width: 100% !important;
			background-color: #FFFFFF;
			position: absolute;
			z-index: 9999;
			left: 0rpx;
			top: 25rpx;
			// border: 1rpx solid #d6d6d6;
		}
		.topHint{
			width: 100%;
			height: 25rpx;
			line-height: 25rpx;
			font-size: 15rpx;
			color: #999999;
			text-align: center;
			background: ;
		}
		.btn {
			width: 100%;
			height: 60rpx;
			position: fixed;
			bottom: 0;
			// background-color: red;
			display: flex;
			align-items: center;
			justify-content: center;
			.saveBtn {
				width: 190rpx;
				height: 40rpx;
				line-height: 40rpx;
				background: linear-gradient(306deg, #4281EA 0%, #6363F2 100%);
				border-radius: 10rpx;
				text-align: center;
				font-size: 18rpx;
				color: #FFFFFF;
				margin-right: 10rpx;
			}
			.cancelBtn {
				width: 190rpx;
				height: 40rpx;
				line-height: 40rpx;
				background: #FFFFFF;
				border-radius: 10rpx;
				text-align: center;
				font-size: 18rpx;
				color: #222222;
				margin-left: 10rpx;
			}
		}
	}
</style>

json文件
{
	"path": "pages/clientDitch/sign",
	"style": {
		"navigationBarTitleText": "签字手签",
		"pageOrientation": "landscape",	//控制横屏
		// "navigationStyle": "custom"
	}
}, 

在这里插入图片描述

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-04 15:27:11  更:2022-03-04 15:30:34 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 8:56:25-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码