limited screen real estate, prioritize and simplify your content
UI Frameworks may only give you one breakpoint - consider whether this works for your tablet audience - look at the framework site on your tablet - like it?
larger screen, more flexibility
mobile already, add a breakpoint
no mobile, think about two breakpoints
Analytics is your friend
Who is your audience?
Fixed position issues in Android and iOS
Inspect Touch Events
//Copy and paste these into your JavaScript console
window.addEventListener('touchstart',function(event){
console.log('touchstart: ', event)
});
document.getElementById('toucharea').addEventListener('touchstart',toggle);
window.addEventListener('touchmove', function(event){
console.log('touchmove: ', event);
});
window.addEventListener('touchend',function(event){
console.log('touchend: ', event);
});
Measure image load on placekittens