AngularJS 마우스 이벤트
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>
마우스 이벤트는 커서가 요소 위로 이동하면 다음 순서로 발생합니다.
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>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 148 | AngularJS | 8년 전 | 1653 | ||
| 147 | AngularJS | 8년 전 | 1070 | ||
| 146 | AngularJS | 8년 전 | 1255 | ||
| 145 | AngularJS | 8년 전 | 1369 | ||
| 144 | AngularJS | 8년 전 | 1154 | ||
| 143 | AngularJS | 8년 전 | 1201 | ||
| 142 | AngularJS | 8년 전 | 1169 | ||
| 141 | AngularJS | 8년 전 | 1330 | ||
| 140 | AngularJS | 8년 전 | 1196 | ||
| 139 | AngularJS | 8년 전 | 1439 | ||
| 138 | AngularJS | 8년 전 | 1149 | ||
| 137 | AngularJS | 8년 전 | 1060 | ||
| 136 | AngularJS | 8년 전 | 1149 | ||
| 135 | AngularJS | 8년 전 | 1673 | ||
| 134 | AngularJS | 8년 전 | 1379 | ||
| 133 | AngularJS | 8년 전 | 1472 | ||
| 132 | AngularJS | 8년 전 | 1098 | ||
| 131 | AngularJS | 8년 전 | 1367 | ||
| 130 | AngularJS | 8년 전 | 1463 | ||
| 129 | AngularJS | 8년 전 | 1437 | ||
| 128 | AngularJS | 8년 전 | 2060 | ||
| 127 | AngularJS | 8년 전 | 1482 | ||
| 126 | jQuery Mobile | 8년 전 | 2256 | ||
| 125 | jQuery Mobile | 8년 전 | 2013 | ||
| 124 | jQuery Mobile | 8년 전 | 1881 | ||
| 123 | jQuery Mobile | 8년 전 | 1811 | ||
| 122 | jQuery Mobile | 8년 전 | 1851 | ||
| 121 | jQuery Mobile | 8년 전 | 2056 | ||
| 120 | jQuery Mobile | 8년 전 | 1592 | ||
| 119 | jQuery Mobile | 8년 전 | 1674 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기