<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example73-production</title>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
<style>
.flag{
font-size:20px;
}
</style>
</head>
<body ng-app="">
<button ng-mouseenter="flag = 1" ng-mouseleave="flag = 0" ng-init="flag=0" ng-class="{'flag':flag}">
Increment (when mouse is over)
</button>
count: {{flag}}
</body>
</html>
<!--
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
-->