Latest web development tutorials

AngularJS ng-mousemove instruction

AngularJS Reference Manual AngularJS Reference Manual


AngularJS examples

Executive expression when the mouse pointer moves over the element:

<Div ng-mousemove = "count = count + 1" ng-init = "count = 0"> mouse in my mobile! </ Div>

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

try it"

Definition and Usage

ng-mousemove tell the operating instructions for AngularJS mouse moves over HTML element to be executed.

ng-mousemove directive does not cover elements native onmousemove event, the event is triggered, ng-mousemoveexpression and native onmousemove event will be executed.


grammar

<Element ng-mousemove = "expression "> </ element>

All HTML elements support this instruction.


Parameter Value

value description
expression When moving the mouse to perform expression in the element.

AngularJS Reference Manual AngularJS Reference Manual