JSFiddle - React, Tailwind, and code Playground

by pleinx

CSS

body, html {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

JavaScript

var body = document.querySelector('body');

body.addEventListener('click', function(e) {
	e.target.style.background = 'red';
});

body.addEventListener('touchstart', function(e) {
	e.target.style.background = 'grey';
  e.target.style.border = '20px solid grey';
});

body.addEventListener('touchend', function(e) {
	e.target.style.background = 'blue';
});