Links
- good: A Beginner's Guide to Perceived Performance: 4 Ways to Make Your Mobile Site Feel Like a Native App
- nngroup.com / Nielsen Norman Group
- Articles
- Libraries/Tools
- PaulKinlan/formfactor
- Form Factor Detection – mobile/tv/etc.
- PaulKinlan/formfactor
- Misc
navigator.connection
navigator.online
- 300ms delay on click
- FastClick by FT Labs uses touch events to trigger clicks faster & removes the double-tap gesture. It looks at the amount your finger moved between
touchstart
andtouchend
to differentiate scrolls and taps. - Adding a
touchstart
listener to everything has a performance impact, because lower-level interactions such as scrolling are delayed by calling the listener to see if itevent.preventDefault()
s. - chrome 32 for android: 300ms tap delay, gone away
- FastClick by FT Labs uses touch events to trigger clicks faster & removes the double-tap gesture. It looks at the amount your finger moved between