Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

uni-touch-scaleing

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uni-touch-scaleing

Uniapp触摸缩放/旋转

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Uniapp 双指触摸缩放

使用方法

安装

npm install uni-touch-scaleing

在 Uniapp 中使用

  • demo页面
<template>
	<view class="touch-zoom" @touchstart="onTouchstart" @touchmove="onTouchmove" @touchend="onTouchend">
		<image src="图片地址" :style="[cmpTransform]" mode="aspectFit" />
	</view>
</template>
<script>
import TouchScale from 'uni-touch-scaleing';
export default {
	data() {
		return {
			touch: null,
			scaling: 1, // 缩放比例
			translate: 0, // 偏移量
			rotate: 0, // 旋转角度
			transition: 0, // 过渡动画时长

			transitionTime: null, // 定时器
			clearTransitionTime: null // 定时器
		};
	},
	mounted() {
		this.touch = new TouchScale();
	},
	destroyed() {
		// 销毁组件清除定时器
		clearTimeout(this.transitionTime);
		clearTimeout(this.clearTransitionTime);
	},
	computed: {
		cmpTransform() {
			return {
				transform: `scale(${this.scaling}) translate(${this.translate}) rotate(${this.rotate}deg)`,
				transition: this.transition
			};
		}
	},
	methods: {
		onTouchstart(e) {
			this.touch.touchStart(e.changedTouches);
		},
		onTouchmove(e) {
			const bool = this.touch.touchMove(e.changedTouches);
			if (!bool) return;
			this.scaling = this.touch.scale;
			this.translate = `${this.touch.translateX}px,${this.touch.translateY}px`;
			this.rotate = this.touch.rotate;
		},
		onTouchend(e) {
			const bool = this.touch.touchEnd(e.changedTouches);
			if (!bool) return;
			// 退出还原
			this.transition = '0.3s'; // 添加过渡动画
			clearTimeout(this.transitionTime);
			this.transitionTime = setTimeout(() => {
				this.scaling = 1;
				this.translate = 0;
				this.rotate = 0;
				clearTimeout(this.clearTransitionTime);
				this.clearTransitionTime = setTimeout(() => {
					this.transition = 0; // 清除过度动画
				}, 100);
			}, 50);
		}
	}
};
</script>

<style>
.touch-zoom {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100;
}
image {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
}
</style>

Keywords

FAQs

Package last updated on 18 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc