⌈⌋ ⎇ branch:  Bitrhythm


Artifact Content

Artifact 7c72a0b765ffc8bd6984c1564f33bed05e069442d07a3f21af3674d6715b5740:



<touch-events>

  <div ontouchstart={ fn } ontouchmove={ fn } ontouchend={ fn }>
    <h3>Touch me, touch me.</h3>
  </div>

  <div id="info" onclick={ clear }></div>

  fn(e) {
    this.info.innerHTML += e.type + '<br>'
  }

  clear() {
    this.info.innerHTML = ''
  }

</touch-events>