JSFiddle - React, Tailwind, and code Playground
by khamer
HTML
<h1 class="mousemove"></h1>
<h1 class="touchmove"></h1>
CSS
html {
background: red;
}
JavaScript
$(function() {
$(window).on('mousemove', () => {
$('h1.mousemove').text('mousemove at: ' + (new Date()));
});
$(window).on('touchmove', () => {
$('h1.touchmove').text('touchmove at: ' + (new Date()));
});
});