Google Calendar Stretching on Iphones...

User 271657 Photo


Ambassador
3,816 posts

They should note that on their CALENDAR :lol:
I love deadlines. I like the whooshing sound they make as they fly by. (Douglas Adams)
https://www.callendales.com
User 122279 Photo


Senior Advisor
14,450 posts

paintbrush wrote:
Remain Calm.... No need to bash America's favorite fruit :lol:
Check this out...
http://www.smashingmagazine.com/2014/02 … ve-design/

Scroll down a bit to get to the calendar part. The author also recommends two different calendar options.

You haven't by any chance seen a solution to the problem with IOS, that they don't support :hover state?
Ha en riktig god dag!
Inger, Norway

My work in progress:
Components for Site Designer and the HTML Editor: https://mock-up.coffeecup.com


User 271657 Photo


Ambassador
3,816 posts

You haven't by any chance seen a solution to the problem with IOS, that they don't support :hover state?

:P Nothing worth bothering with. I don't like the idea of adding extra JS to detect what device is being used which then sends along a different set-up for that device.
These are from a 2013 thread on Stack Overflow:
The hover pseudo class only functions on iOS when applied to a link tag. They do that because there is no hover on a touch device reall. It acts more like the active class. So they can't have one unless its a link going somewhere for usability reasons. Change your div to a link tag and you will have no problem.

add this to the element with :hover effect
.myclass { cursor: pointer; }

I've also seen the "cursor:pointer" bit added to the <body> and to <html> elements.
Opinion article:
http://designshack.net/articles/css/are … s-extinct/
Despite this, I still absolutely recommend against relying on hover events as a critical method of interaction on mobile devices. To do so is setting yourself up for lots of user headaches. Given the range of different touchscreen browsers and devices, you can’t be certain without a ridiculous level of testing that hover events translate the same way on all of them.

Consequently, my advice is to always assume, regardless of the truth of the statement, that the hover interaction model won’t work for smarthphone and tablet users. This assumption does not however, prevent you from styling the hover selector in all your work and even using some fancy hover effects once in a while. Just keep in mind that the user’s success should not depend on this action, rather it becomes more of a progressive enhancement situation where everyone can use your site at its most basic level and desktop users can enjoy a few visual thrills that touchscreen users might not ever see.
I love deadlines. I like the whooshing sound they make as they fly by. (Douglas Adams)
https://www.callendales.com

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.