Data Table and List
There doesn’t seem to be a need for columns data to compare so would definitely avoid a table here. The only advantage of … Read more
There doesn’t seem to be a need for columns data to compare so would definitely avoid a table here. The only advantage of … Read more
You could solve this with mousedown/mouseup events, and their touch equivalents, touchstart/touchend. image.addEventListener(‘touchstart’, () => { image.classList.add(‘zoomed’) document.addEventListener(‘touchend’, () => image.classList.remove(‘zoomed’), { once: … Read more
If they’re only going to be signing in with FaceBook it makes sense to have them sign in first. As a user I … Read more
Ideally your layout should be able to cope with whatever aspect ratio the user chooses to use, whether that’s landscape, portrait or square. … Read more
For iPhone, at least, this question has already been answered on StackOverflow: How do I lock the orientation to portrait mode in a … Read more
Yes it can. Take a look at Sencha Touch. The example below is from my iPhone in Safari (HTML5 app).
Having a root page that redirects whenever you’re on a mobile device sounds like the way to go (try surfing to facebook.com with … Read more
There are a few different approaches that can be taken here. The first approach is to specify dimensions using percentages. In other words, … Read more
You can place the buttons on the top. Here is a rough update to your design. The top bar can freeze on top.
On the last project I was working with, we’ve just decided to scale the 320 view until 480. Of course, there can be … Read more