双指缩放

<table class="text"><tr class="li1">
<td class="ln"><pre class="de1">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79

图片,双指缩放图片             * @marks 参数one是为了区分屏幕上现在是一根手指还是两根手指,因为在滑动的时候两根手指先离开一根会触发一根手指移动图片位置这个方法             */             var touchScale = function(seletor,bg) {                 var startX,endX,scale,x1,x2,y1,y2,imgLeft,imgTop,imgWidth,imgHeight,                    one = false,                    $touch = $(seletor),                    originalWidth = $touch.width(),                    originalHeight = $touch.height(),                    baseScale = parseFloat(originalWidth/originalHeight),                    imgData = [],                    bgTop = parseInt($(bg).css('top'));                 function siteData(name) {                     imgLeft = parseInt(name.css('left'));                     imgTop = parseInt(name.css('top'));                     imgWidth = name.width();                     imgHeight = name.height();                 }                 $(document).on('touchstart touchmove touchend',$(seletor).parent().selector,function(event){                     var $me = $(seletor),                        touch1 = event.originalEvent.targetTouches[0], // 第一根手指touch事件                         touch2 = event.originalEvent.targetTouches[1], // 第二根手指touch事件                         fingers = event.originalEvent.touches.length;   // 屏幕上手指数量                     //手指放到屏幕上的时候,还没有进行其他操作                     if (event.type == 'touchstart') {                         if (fingers == 2) {                             // 缩放图片的时候X坐标起始值                             startX = Math.abs(touch1.pageX - touch2.pageX);                             one = false;                         }                         else if (fingers == 1) {                             x1 = touch1.pageX;                             y1 = touch1.pageY;                             one = true;                         }                         siteData($me);                     }                     //手指在屏幕上滑动                     else if (event.type == 'touchmove') {                         if (fingers == 2) {                             // 缩放图片的时候X坐标滑动变化值                             endX = Math.abs(touch1.pageX - touch2.pageX);                             scale = endX - startX;                             $me.css({                                 'width' : originalWidth + scale,                                'height' : (originalWidth + scale)/baseScale,                                'left' : imgLeft,                                'top' : imgTop                             });                                                     }else if (fingers == 1) {                             x2 = touch1.pageX;                             y2 = touch1.pageY;                             if (one) {                                 $me.css({                                     'left' : imgLeft + (x2 - x1),                                    'top' : imgTop + (y2 - y1)                                 });                             }                         }                     }                     //手指移开屏幕                     else if (event.type == 'touchend') {                         // 手指移开后保存图片的宽                         originalWidth = $touch.width(),                        siteData($me);                         imgData = [[imgLeft,imgTop-bgTop,imgHeight],[0,640,640]];                     }                 });                 var getData = function(){                     return imgData;                 };                 return {                     imgData : getData                 }             };             双指缩放

相关文章

这个问题和curl无法访问https资源是类似的,现在curl可以访问https资源,但是使用pecl安装扩展的时候不行...
在浏览器输入chrome://flags/回车,找到Omnibox UI Hide Steady-State URL Scheme and Trivial Subdoma...
方法一: 我们都知道Ubuntu有一个专门用来安装软件的工具apt,我们可以用它来全自动安装arm-linux-gcc。...
中文的windows下的cmd默认使用GBK的编码,敲代码时,页面使用的是UTF-8(65001),而powershell控制台默认...
提示错误: arm-linux-gcc:Command not found PATH里有/usr/oca/arm/bin,但是make的时候,就是找不到 a...
我在Graph API开发中用的最多的测试工具就是Graph Explore,这个是微软开发的网页版的Graph API的测试工...