+ 4
can anyone describe working with events?touchmove,touchstart, touchend?with examples
Sorry for my English))
2 Answers
+ 1
Touchstart
==========
This happens the moment your finger touches the element involved. Hence the name "touchstart"
Touchend
==,======
This event occurs the moment your finger leaves the screen.
The direct opposite of touchstart.
Touchmove
==========
This occurs when you slide /move your finger across the screen.
Here's an example demonstrating touchmove.
https://code.sololearn.com/W3rrB5K5m6Js/?ref=app
+ 4
is it possible for these events to tie the changing styles of elements?