AngularJS 마우스 이벤트

· 8년 전 · 2136
AngularJS 마우스 이벤트

마우스 이벤트는 커서가 요소 위로 이동하면 다음 순서로 발생합니다.

ng-mouseenter
ng-mouseover
ng-mousemove
ng-mouseleave

또는 요소에서 마우스 버튼을 클릭하면 다음 순서대로 수행됩니다.

ng-mousedown
ng-mouseup
ng-click

모든 HTML 요소에 마우스 이벤트를 추가 할 수 있습니다.


마우스가 H1 요소 위로 이동할 때 카운트 변수를 증가시킵니다.

<div ng-app="myApp" ng-controller="myCtrl">

<h1 ng-mousemove="count = count + 1">Mouse over me!</h1>

<h2>{{ count }}</h2>

</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.count = 0;
});
</script>

예)
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>

<div ng-app="myApp" ng-controller="myCtrl">

<h1 ng-mousemove="count = count + 1">Mouse Over Me!</h1>

<h2>{{ count }}</h2>

</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.count = 0;
});
</script>

</body>
</html>
|
댓글을 작성하시려면 로그인이 필요합니다.

퍼블리싱강좌

+
분류 제목 글쓴이 날짜 조회
AngularJS 8년 전 조회 1,229
AngularJS 8년 전 조회 1,379
AngularJS 8년 전 조회 1,252
AngularJS 8년 전 조회 1,495
AngularJS 8년 전 조회 1,204
AngularJS 8년 전 조회 1,106
AngularJS 8년 전 조회 1,196
AngularJS 8년 전 조회 1,723
AngularJS 8년 전 조회 1,431
AngularJS 8년 전 조회 1,540
AngularJS 8년 전 조회 1,164
AngularJS 8년 전 조회 1,423
AngularJS 8년 전 조회 1,528
AngularJS 8년 전 조회 1,512
AngularJS 8년 전 조회 2,137
AngularJS 8년 전 조회 1,547
jQuery Mobile
[jQuery Mobile]
8년 전 조회 2,325
jQuery Mobile
[jQuery Mobile]
8년 전 조회 2,076
jQuery Mobile
[jQuery Mobile]
8년 전 조회 1,948
jQuery Mobile 8년 전 조회 1,857
jQuery Mobile
[jQuery Mobile]
8년 전 조회 1,894
jQuery Mobile
[jQuery Mobile]
8년 전 조회 2,117
jQuery Mobile
[jQuery Mobile]
8년 전 조회 1,646
jQuery Mobile
[jQuery Mobile]
8년 전 조회 1,718
jQuery Mobile 8년 전 조회 1,386
jQuery Mobile
[jQuery Mobile]
8년 전 조회 1,639
jQuery Mobile 8년 전 조회 1,863
jQuery Mobile 8년 전 조회 1,813
jQuery Mobile 8년 전 조회 2,008
jQuery Mobile 8년 전 조회 1,927