web-dev-qa-db-ja.com

Angularjsのng-touchstartおよびng-touchend

ng-mousedownおよびng-mouseupで関数を起動する要素があります。ただし、タッチスクリーンでは機能しません。ng-touchstartng-touchendなどのディレクティブはありますか?

16
ciembor

このためのモジュールがあります: https://docs.angularjs.org/api/ngTouch

ただし、イベント用の独自のディレクティブも作成できます。

<!doctype html>
<html>
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.js"></script>
    </head>
    <body ng-app="plunker">
        <div  ng-controller="MainCtrl">
            <div my-touchstart="touchStart()" my-touchend="touchEnd()">
                <span data-ng-hide="touched">Touch Me ;)</span>
                <span data-ng-show="touched">M-m-m</span>
            </div>
        </div>
        <script>
            var app = angular.module('plunker', []);
            app.controller('MainCtrl', ['$scope', function($scope) {
                $scope.touched = false;

                $scope.touchStart = function() {
                    $scope.touched = true;
                }

                $scope.touchEnd = function() {
                    $scope.touched = false;
                }
            }]).directive('myTouchstart', [function() {
                return function(scope, element, attr) {

                    element.on('touchstart', function(event) {
                        scope.$apply(function() { 
                            scope.$eval(attr.myTouchstart); 
                        });
                    });
                };
            }]).directive('myTouchend', [function() {
                return function(scope, element, attr) {

                    element.on('touchend', function(event) {
                        scope.$apply(function() { 
                            scope.$eval(attr.myTouchend); 
                        });
                    });
                };
            }]);
        </script>
    </body>
</html>
13
Kostya Shkryob

私は自分でそれを必要としていたので、私はそれらを今日より早くしました:

それが役に立てば幸い。

8
Mark Topper

思いついたバージョンは$ parse()を使用します。これは$ eval()が内部的に使用するものです。単一のディレクティブを使用してmousedownイベントとtouchstartイベントを処理したかったのですが、angularのようにangularスタイル式を含めることができます。

そのようです:

angular.module("ngStudentselect", []).directive('ngStudentselect', ['$parse', '$timeout', '$rootElement',
function($parse, $timeout, $rootElement) {
    return function(scope, element, attr) {
        var clickHandler = $parse(attr.ngStudentselect);

        element.on('mousedown touchstart', function(event) {
            scope.$apply(function() {
                clickHandler(scope, {$event: event});
            });
        });
    };
}]);

これは、angularのngClickディレクティブの簡易バージョンです。

1
Kevin MacDonald