Skip to content

Instantly share code, notes, and snippets.

@Vheissu
Last active December 7, 2016 02:51
Show Gist options
  • Save Vheissu/db72c2d41709697134654d5287913c0c to your computer and use it in GitHub Desktop.
Save Vheissu/db72c2d41709697134654d5287913c0c to your computer and use it in GitHub Desktop.
An example showing how to detect mouse movement events in Aurelia
<template>
<div mousemove.delegate="mousemove($event)" style="background: teal; border: 2px dotted #333; color: #FFF; font-size: 16px; font-weight: bold; height: 250px; width:500px;">Move mouse in here...</div>
<ul if.bind="mouseevents">
<li repeat.for="mouseevent of mouseevents">x: ${mouseevent.x} y: ${mouseevent.y}</li>
</ul>
</template>
export class App {
constructor() {
this.mouseevents = [];
}
mousemove(e) {
this.mouseevents.push({x: e.clientX, y: e.clientY});
}
}
<!doctype html>
<html>
<head>
<title>Aurelia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body aurelia-app>
<h1>Loading...</h1>
<script src="https://jdanyow.github.io/rjs-bundle/node_modules/requirejs/require.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/config.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/aurelia.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/babel.js"></script>
<script>
require(['aurelia-bootstrapper']);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment