How to Simulate :Active CSS Pseudo Class in Android on Non-Link Elements

Button doesn't get redrawn, when in active state (Android Webkit)

:active doesn't work in Android Webkit. Proof and more: How to simulate :active css pseudo class in android on non-link elements?

Thanks to Colin for the idea of the test.

UPDATE

I've tried the following hacks.

  1. Replace :active with :hover. Doesn't work. If you tap the button it becomes pressed, but you can move your finger in z-direction, away from screen, so the button never returns to normal state.
  2. Replace 'button' element with 'a'. Doesn't work. Not only hard to emulate button look, but also feel, as it never becomes pressed at all.

It seems like touch events are the only way to get the job done.

CSS :hover on mobile or other device as toggle

Your question isn't totally clear and I cannot understand whether you're asking "Can I use :hover across all the devices?" or "Will :hover behave the same across all the devices?" or "Is :hover a standard element on the web?"

Also it greatly depends of your concept of "all devices", if you have in mind the currently most used devices or you are taking in account also the less-known and used devices.

I will quote you the following, but I am pretty sure you have already read that:

Interactive user agents sometimes change the rendering in response to
user actions. CSS provides three pseudo-classes for common cases:

The :hover pseudo-class applies while the user designates an element
(with some pointing device), but does not activate it. For example, a
visual user agent could apply this pseudo-class when the cursor (mouse
pointer) hovers over a box generated by the element. User agents not
supporting interactive media do not have to support this pseudo-class.
Some conforming user agents supporting interactive media may not be
able to support
this pseudo-class (e.g., a pen device). The :active
pseudo-class applies while an element is being activated by the user.
For example, between the times the user presses the mouse button and
releases it.

CSS does not define which elements may be in the above states, or how
the states are entered and left. Scripting may change whether elements
react to user events or not, and different devices and UAs may have
different ways of pointing to, or activating elements
.

5.11.3 The dynamic pseudo-classes: :hover, :active, and :focus
http://www.w3.org/TR/CSS2/selector.html#dynamic-pseudo-classes

As you can see on the W3C specification it claims that the :hover pseudo-class is not required to a non-interactive media user agents as well as some interactive media user agents.
Therefore is safe to assume :hover is not always supported.

To dig deep on the matter, take a read at the following specification for Safari Mobile:

Additionally, Safari on iOS users interact with your web content
directly with their fingers, rather than using a mouse. This creates
new opportunities for touch-enabled interfaces, but does not work well
with hover states
. For example, a mouse pointer can hover over a
webpage element and trigger an event; a finger on a Multi-Touch screen
cannot
. For this reason, mouse events are emulated in Safari on iOS.
As a result, elements that rely only on mousemove, mouseover, mouseout
or the CSS pseudo-class :hover may not always behave as expected on a
touch-screen device such as iPad or iPhone
.

You can handle touches directly or even detect advanced gestures in
Safari on iOS, using the DOM Touch events touchstart, touchmove,
touchend, and touchcancel. Unlike mouse events which are emulated, DOM
Touch events are specifically designed to work with touch interfaces,
so their behavior is reliable and expected.

5. Prepare for a touch interface
https://developer.apple.com/library/content/technotes/tn2010/tn2262/_index.html

Apple clearly states here that they tend to emulate the pointer with the touch gestures, however they clearly suggest to avoid using the :hover pseudo-class as won't behave the same on their touch device.

We could dig deeper and fetch every documentation for each user-agent existing on earth but the previous two are enough to assume the following:

  • Non interactive devices do not have to support :hover
  • Interactive devices can support the pseudo-class (but it's not mandatory and they can ignore it, for example screen-readers or braille screens)
  • Apple touch devices in absence of a pointer emulates :hover
  • It is safe to assume current touch devices also emulates :hover
  • It is safe to assume any other browser/device don't necessarily have to support :hover depending on their interface.
  • Very likely the recent browsers will all support :hover because is a visual aid for the user.

So to answer to all the question(s) I have assumed above:

"Is :hover a standard element on the web?"

Hover is a standard W3C in fact it claims it must be triggered by a pointer event, but isn't required for some interfaces.

"Can I use :hover across all the devices?"

Yes you probably can. The devices which won't support :hover very likely are devices/users that probably aren't your main target. Better ask yourself "Who will be the end-user of my product?" if they are only mobile users or only blind people or only people who like to browse using the Nintendo DS then don't use :hover events, otherwise do.

"Will :hover behave the same across all the devices?"

No, as Apple stated on their devices will not behave the same as a desktop would, and that probably reflects the same behaviour on all devices without a pointer.

If you plan to have an user action via a hover state don't do it. This is generally bad practice and it should avoided in any case, including desktop devices. Hover is not an call to action, click is. Hover should not be treated as a "toggle" but more like a visual helper for the user making him/her understand that element, if clicked, triggers an action.

If I understood your application then hover isn't reliable and in your specific case you should rethink on how it should work.
Use a more reliable method (and expected from your user)

Can I have an onclick effect in CSS?

The closest you'll get is :active:

#btnLeft:active {
width: 70px;
height: 74px;
}

However this will only apply the style when the mouse button is held down. The only way to apply a style and keep it applied onclick is to use a bit of JavaScript.

How do I simulate a hover with a touch in touch enabled browsers?

OK, I've worked it out! It involves changing the CSS slightly and adding some JS.

Using jQuery to make it easy:

$(document).ready(function() {
$('.hover').on('touchstart touchend', function(e) {
e.preventDefault();
$(this).toggleClass('hover_effect');
});
});

In english: when you start or end a touch, turn the class hover_effect on or off.

Then, in your HTML, add a class hover to anything you want this to work with. In your CSS, replace any instance of:

element:hover {
rule:properties;
}

with

element:hover, element.hover_effect {
rule:properties;
}

And just for added usefulness, add this to your CSS as well:

.hover {
-webkit-user-select: none;
-webkit-touch-callout: none;
}

To stop the browser asking you to copy/save/select the image or whatever.

Easy!



Related Topics



Leave a reply



Submit