qqx161 发表于 2016-3-20 17:23:21

IONIC 如何 获取触摸或者 拖拽事件时坐标位置

IONIC 如何 获取触摸或者 拖拽事件时坐标位置


ionicwang 发表于 2016-3-20 19:53:45

这个好像不好整    你想实现什么功能

qqx161 发表于 2016-3-20 20:31:13

ionicwang 发表于 2016-3-20 19:53
这个好像不好整    你想实现什么功能

on-touch="nowtouch()" on-release="retouch()" on-drag="rotate()

var obj = document.getElementById('HomeNav');
            obj.addEventListener('touchmove', function(event) {
                // If there's exactly one finger inside this element
                if (event.targetTouches.length == 1) {
                  var touch = event.targetTouches;
                  // Place element where the finger is
                  if(!$scope.nx && !$scope.ny){
                        $scope.nx = touch.pageX;
                        $scope.ny = touch.pageY;
                  }
                }
            }, false);

已经做好了,这是部分代码, 用IONCI 事件做了一个建行APP 首页的转盘。

帮我想想如何 实现    某一个页面 横屏,最好通过IONIC 的插件什么的 接口控制WEBVIEW层 旋转。
页: [1]
查看完整版本: IONIC 如何 获取触摸或者 拖拽事件时坐标位置