Skip to content

Instantly share code, notes, and snippets.

View Luxiyalu's full-sized avatar

Lucia Lu Luxiyalu

View GitHub Profile
@Luxiyalu
Luxiyalu / follow-mousemove.coffee
Last active August 29, 2015 14:07
AngularJS Directive: Follow Mouse Movement
# dependency: jQuery
app.directive 'followMousemove', ->
restrict: 'A'
($scope, $element, $attr) ->
$(document).mousemove (e) ->
$element.css
# specific number here could be modified
top: e.pageY
left: e.pageX