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>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 88 | jQuery Mobile | 8년 전 | 1937 | ||
| 87 | jQuery Mobile | 8년 전 | 1918 | ||
| 86 | jQuery Mobile | 8년 전 | 1528 | ||
| 85 | jQuery Mobile | 8년 전 | 1837 | ||
| 84 | jQuery Mobile | 8년 전 | 1874 | ||
| 83 | jQuery Mobile | 8년 전 | 1887 | ||
| 82 | jQuery Mobile | 8년 전 | 1657 | ||
| 81 | jQuery Mobile | 8년 전 | 1373 | ||
| 80 | jQuery Mobile | 8년 전 | 1811 | ||
| 79 | jQuery Mobile | 8년 전 | 1358 | ||
| 78 | jQuery Mobile | 8년 전 | 1756 | ||
| 77 | jQuery Mobile | 8년 전 | 1782 | ||
| 76 | jQuery Mobile | 8년 전 | 1791 | ||
| 75 | jQuery Mobile | 8년 전 | 1405 | ||
| 74 | jQuery Mobile | 8년 전 | 1543 | ||
| 73 | jQuery Mobile | 8년 전 | 1249 | ||
| 72 | jQuery Mobile | 8년 전 | 1630 | ||
| 71 | jQuery Mobile | 8년 전 | 1622 | ||
| 70 | jQuery Mobile | 8년 전 | 1506 | ||
| 69 | jQuery Mobile | 8년 전 | 1514 | ||
| 68 | jQuery Mobile | 8년 전 | 2051 | ||
| 67 | jQuery Mobile | 8년 전 | 1317 | ||
| 66 | jQuery Mobile | 8년 전 | 1695 | ||
| 65 | jQuery Mobile | 8년 전 | 1188 | ||
| 64 | jQuery Mobile | 8년 전 | 1468 | ||
| 63 | jQuery Mobile | 8년 전 | 1659 | ||
| 62 | jQuery Mobile | 8년 전 | 1640 | ||
| 61 | jQuery Mobile | 8년 전 | 1877 | ||
| 60 | jQuery Mobile | 8년 전 | 1412 | ||
| 59 | jQuery Mobile | 8년 전 | 1968 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기