Uniapp实现签名效果

我也不是组件引进来的,直接建了个vue文件,代码放上运行就完了

<template>
     <view class="signa">
            <view class="btn">
                <view class="cancel-btn" @click="clear">
                    <span class="iconfont" style="margin-right: 10px;"></span>
                    重写
                </view>
                
                <view class="save-btn" @click="save">
                    <span class="iconfont" style="margin-right: 10px;"></span>
                    确认
                </view>
                
             <!--   <view class="cancel-bth" @click="colse">
                    <span class="iconfont" style="margin-right: 10px;"></span>
                    关闭
                </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: '0px',
                height: '0px',
            }
        },
        onLoad() {
            
        },
        computed:{
            
        },
        created() {
            uni.getSystemInfo({
                success: (res) => {
                    this.width = res.windowWidth - 60 + 'px';
                    this.height = res.windowHeight - 15 + 'px';
                }
            });
            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()
            },
            //关闭
        //     colse(e){
        //         this.$emit('colse',false);
                                // // this.disable-scrol = false/*  */
        //     },
            // 保存图片
            save() {
                var t=this;
                uni.canvasToTempFilePath({
                    canvasId: 'designature',
                    fileType: 'png',
                    quality: 1, //图片质量
                    success:function(res) {
                        t.$emit('getImg',res.tempFilePath)
                        // uni.navigateBack({
                        //     delta:1
                        // }) v
                                                console.log(res.tempFilePath,"success!!")
                    },
                    fail(e){
                        console.log(e)
                    }
                },this)
            }
        }
    }
</script>

<style scoped lang="less">
    .signa {
        position: relative;
        overflow: hidden;
        background-color: #f1efef;
        height: 100vh;
        width: 100vw;
        .canvas {
            background-color: #FFFFFF;
            position: absolute;
            z-index: 9999;
            left: 50px;
            top: 6px;
            border: 1px solid #d6d6d6;
        }
        .btn {
            height: 100vh;
            position: fixed;
            background-color: #007AFF;
            font-size: 32rpx;
            .cancel-btn {
                width: 20vh;
                position: fixed;
                left: 50rpx;
                border: 1rpx solid #a9a1a1;
                transform: rotate(90deg);
                color: #666;
                margin-left: -10vh;
                margin-top: 15vh;
                height: 65rpx;
                line-height: 65rpx;
                border-radius: 3px;
                text-align: center;
                justify-content: center;
            }
    
            .save-btn {
                position: absolute;
                z-index: 999;
                display: inline-flex;
                margin-top: 47vh;
                margin-left: -10vh;
                transform: rotate(90deg);
                background: #007AFF;
                width: 20vh;
                left: 50rpx;
                border-radius: 3px;
                border: 1rpx solid #007AFF;
                color: #fff;
                height: 65rpx;
                line-height: 65rpx;
                text-align: center;
                justify-content: center;
            }
            
            .cancel-bth{
                display: inline-flex;
                background: #de7f7f;
                color: #fff;
                width: 20vh;
                heigh t: 65rpx;
                line-height: 65rpx;
                text-align: center;
                justify-content: center;
                transform: rotate(90deg);
                margin-top: 80vh;
                border-radius: 3px;
                border: 1rpx solid #de7f7f;
                position: absolute;
                left: 50px;
                z-index: 999;
                margin-left: -14vh;
            }
        }
    }
</style> 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值