「AngularJS入門」mousemoveイベントのサンプル

書式
ng-mousemove="{表現式}">
使用例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="/angular.js/1.4.6/angular.min.js"></script>
</head>
<body ng-app="">

<div ng-mousemove="count = count + 1" ng-init="count=0">マウス移動 カウント数計算</div>

<h1>{{count}}</h1>

<p>
mousemoveイベントのカスタムテスト</p>

</body>
</html>

 

AngularJS

Posted by arkgame