IONIC 如何 获取触摸或者 拖拽事件时坐标位置
IONIC 如何 获取触摸或者 拖拽事件时坐标位置这个好像不好整 你想实现什么功能 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]