How do I stop iOS Chrome from dimming on touching a canvas?
Try this -webkit-tap-highlight-color: rgba(0,0,0,0);
If that doesn't work, try pointer-events: none;
TL;DR: This fixed it
elem.addEventListener('touchstart', function(e) {
e.preventDefault();
});
Long version: See updates to bottom of question