What is the safest way, using media queries, to make something happen when not on a touchscreen device? If there is no way, do you suggest using a JavaScript solution such as !window.Touch
or Modernizr?
Nowadays, CSS Media queries can be used to define style for devices with specific interactive features and it's widely supported as well.
hover for example can be used to test whether the user's primary input mechanism can hover over elements (which would not be true in touch-enabled devices without emulating)
@media (hover: none) {
a {
background: yellow;
}
}
Other interactive tests are: pointer, any-pointer, hover, and any-hover
Previous answer
I would suggest using modernizr and using its media query features.
if (Modernizr.touch){
// bind to touchstart, touchmove, etc. and watch `event.streamId`
} else {
// bind to normal click, mousemove, etc.
}
However, using CSS, there are pseudo class like, for example in Firefox. You can use :-moz-system-metric(touch-enabled). But these features are not available for every browser.
For Apple devices, you can simply use:
if (TouchEvent) {
//...
}
Especially for iPad:
if (Touch) {
// ...
}
But, these do not work on Android.
Modernizr gives feature detection abilities, and detecting features is a good way to code, rather than coding on basis of browsers.
Styling Touch Elements
Modernizer adds classes to the HTML tag for this exact purpose. In this case, touch
and no-touch
so you can style your touch related aspects by prefixing your selectors with .touch. e.g. .touch .your-container
. Credits: Ben Swinburne
modernizr
will be perfect :) –
Freighter Modernizr.touch
test only indicates if the browser supports touch events, which does not necessarily reflect a touchscreen device. For example, Palm Pre / WebOS (touch) phones do not support touch events and thus fail this test. –
Rh touch
and no-touch
so you can style your touch related aspects by prefixing your selectors with .touch
. E.g. .touch .your-container
–
Dasilva modernizr
adds these classes to the html
element, not the body
element. –
Fibriform :hover
inside of a hover: none
mean that the rule will do absolutely nothing. I've edited the :hover
out of the answer to avoid confusion in the future. –
Malaria hover: hover
, so what's the use of this after all? –
Pilotage There is actually a property for this in the CSS4 media query draft.
The ‘pointer’ media feature is used to query about the presence and accuracy of a pointing device such as a mouse. If a device has multiple input mechanisms, it is recommended that the UA reports the characteristics of the least capable pointing device of the primary input mechanisms. This media query takes the following values:
‘none’
- The input mechanism of the device does not include a pointing device.‘coarse’
- The input mechanism of the device includes a pointing device of limited accuracy.‘fine’
- The input mechanism of the device includes an accurate pointing device.
This would be used as such:
/* Make radio buttons and check boxes larger if we have an inaccurate pointing device */
@media (pointer:coarse) {
input[type="checkbox"], input[type="radio"] {
min-width:30px;
min-height:40px;
background:transparent;
}
}
I also found a ticket in the Chromium project related to this.
Browser compatibility can be tested at Quirksmode. These are my results (22 jan 2013):
- Chrome/Win: Works
- Chrome/iOS: Doesn't work
- Safari/iOS6: Doesn't work
Nowadays, CSS Media queries can be used to define style for devices with specific interactive features and it's widely supported as well.
hover for example can be used to test whether the user's primary input mechanism can hover over elements (which would not be true in touch-enabled devices without emulating)
@media (hover: none) {
a {
background: yellow;
}
}
Other interactive tests are: pointer, any-pointer, hover, and any-hover
Previous answer
I would suggest using modernizr and using its media query features.
if (Modernizr.touch){
// bind to touchstart, touchmove, etc. and watch `event.streamId`
} else {
// bind to normal click, mousemove, etc.
}
However, using CSS, there are pseudo class like, for example in Firefox. You can use :-moz-system-metric(touch-enabled). But these features are not available for every browser.
For Apple devices, you can simply use:
if (TouchEvent) {
//...
}
Especially for iPad:
if (Touch) {
// ...
}
But, these do not work on Android.
Modernizr gives feature detection abilities, and detecting features is a good way to code, rather than coding on basis of browsers.
Styling Touch Elements
Modernizer adds classes to the HTML tag for this exact purpose. In this case, touch
and no-touch
so you can style your touch related aspects by prefixing your selectors with .touch. e.g. .touch .your-container
. Credits: Ben Swinburne
modernizr
will be perfect :) –
Freighter Modernizr.touch
test only indicates if the browser supports touch events, which does not necessarily reflect a touchscreen device. For example, Palm Pre / WebOS (touch) phones do not support touch events and thus fail this test. –
Rh touch
and no-touch
so you can style your touch related aspects by prefixing your selectors with .touch
. E.g. .touch .your-container
–
Dasilva modernizr
adds these classes to the html
element, not the body
element. –
Fibriform :hover
inside of a hover: none
mean that the rule will do absolutely nothing. I've edited the :hover
out of the answer to avoid confusion in the future. –
Malaria hover: hover
, so what's the use of this after all? –
Pilotage The CSS solutions don't appear to be widely available as of mid-2013. Instead...
Nicholas Zakas explains that Modernizr applies a
no-touch
CSS class when the browser doesn’t support touch.Or detect in JavaScript with a simple piece of code, allowing you to implement your own Modernizr-like solution:
<script> document.documentElement.className += (("ontouchstart" in document.documentElement) ? ' touch' : ' no-touch'); </script>
Then you can write your CSS as:
.no-touch .myClass { ... } .touch .myClass { ... }
html.touch &
which will write the selector you have under the parent html.touch
. –
Clef <style>
and <script>
tags by default, but there's nothing stopping you from putting the above in external JS/CSS files, or from using the nonce or hash methods. So the technique is still valid. Developers working on sites with CSP will likely be aware of the necessary workarounds. –
Debbydebee There is actually a media query for that:
@media (hover: none) { … }
Apart from Firefox, it's fairly well supported. Safari and Chrome being the most common browsers on mobile devices, it might suffice untill greater adoption.
hover: hover
, so what's the use of this after all? –
Pilotage Media types do not allow you to detect touch capabilities as part of the standard:
http://www.w3.org/TR/css3-mediaqueries/
So, there is no way to do it consistently via CSS or media queries, you will have to resort to JavaScript.
No need to use Modernizr, you can just use plain JavaScript:
<script type="text/javascript">
var is_touch_device = 'ontouchstart' in document.documentElement;
if(is_touch_device) alert("touch is enabled!");
</script>
window.touch
&& window.TouchEvent
only work for apple devices. –
Freighter In 2017, CSS media query from second answer still doesn't work on Firefox. I found a soluton for that: -moz-touch-enabled
So, here is cross-browser media query:
@media (-moz-touch-enabled: 1), (pointer:coarse) {
.something {
its: working;
}
}
-moz-touch-enabled
will not be required soon –
Inerrant -moz-touch-enabled
is supposedly not supported in Firefox 58+. As in, this solution doesn't cover Firefox 58-63 (since Firefox 64+ supports the pointer query). Source: developer.mozilla.org/en-US/docs/Web/CSS/@media/… –
Stenophyllous This will work. If it doesn't let me know
@media (hover: none) and (pointer: coarse) {
/* Touch screen device style goes here */
}
hover:none is true when hover is not supported
pointer:coarse is true when the input is of limited accuracy.
If all you want to do is to control hover, then you dont need to use pointer.
edit: hover on-demand is not supported anymore
hover: hover
, so what's the use of this after all? –
Pilotage This solution will work until CSS4 is globally supported by all browsers. When that day comes just use CSS4. but until then, this works for current browsers.
browser-util.js
export const isMobile = {
android: () => navigator.userAgent.match(/Android/i),
blackberry: () => navigator.userAgent.match(/BlackBerry/i),
ios: () => navigator.userAgent.match(/iPhone|iPad|iPod/i),
opera: () => navigator.userAgent.match(/Opera Mini/i),
windows: () => navigator.userAgent.match(/IEMobile/i),
any: () => (isMobile.android() || isMobile.blackberry() ||
isMobile.ios() || isMobile.opera() || isMobile.windows())
};
onload:
old way:
isMobile.any() ? document.getElementsByTagName("body")[0].className += 'is-touch' : null;
newer way:
isMobile.any() ? document.body.classList.add('is-touch') : null;
The above code will add the "is-touch" class to the body tag if the device has a touch screen. Now any location in your web application where you would have css for :hover you can call body:not(.is-touch) the_rest_of_my_css:hover
for example:
button:hover
becomes:
body:not(.is-touch) button:hover
This solution avoids using modernizer as the modernizer lib is a very big library. If all you're trying to do is detect touch screens, This will be best when the size of the final compiled source is a requirement.
I believe the better way to query a touch-screen with CSS (in 2022) is with (pointer:coarse)
, and definitely NOT with (hover:none)
, or a combination, as some suggest: (hover: none) and (pointer: coarse)
, because (hover:none)
is unreliable - some devices emulate hover on long press (touch) so (hover:none)
will not be true.
I had such a problem, on a real touch device (a phone, not an emulation), without any other input (mouse or something), that "had" a hover capability, and my media query failed.
Probably the best way is to use Modernizr, or even both (Modernizr and CSS, though I didn't look what tests Modernizr does, might be the same as CSS :) like:
.modernizr-touch-class .my-class { // properties }
@media (pointer:coarse) { .my-class { // the same properties } }
But all in all, this is not considered reliable. When you add modernizr "Touch Events" test, they display a short info (with a few links) on this problem. This is probably a good thing to read to find the best solution to a particular problem, and then test it...
Anyway, I just wanted to say that (hover:none)
is unreliable (in 2022). :D
This works fine on Mozila-based and Webkit-based browsers:
/* show only on mouse devices */
@media (hover: hover), (-moz-touch-enabled: 0), (pointer:fine) {
...
}
/* show only on touch devices */
@media (hover: none), (hover: on-demand), (-moz-touch-enabled: 1), (pointer:coarse) {
...
}
adding a class touchscreen to the body using JS or jQuery
//allowing mobile only css
var isMobile = ('ontouchstart' in document.documentElement && navigator.userAgent.match(/Mobi/));
if(isMobile){
jQuery("body").attr("class",'touchscreen');
}
I was able to resolve this issue using this
@media (hover:none), (hover:on-demand) {
Your class or ID{
attributes
}
}
on-demand
has been removed from the spec and from browsers: github.com/w3c/csswg-drafts/commit/… –
Cockfight As of 5/5/2022:
var isTouch = "maxTouchPoints" in window.navigator && window.navigator.maxTouchPoints > 1;
var isTouchTwo = "ontouchstart" in window;
var isTouchThree = window.matchMedia && window.matchMedia("(pointer:coarse)").matches;
var isDesktopIE = !!window.MSInputMethodContext && !!document.documentMode && !isTouchTwo;
var uaDataIsMobile = window.navigator.userAgentData && window.navigator.userAgentData.mobile;
var isDevice = typeof uaDataIsMobile === 'boolean' ? window.navigator.userAgentData.mobile || (isTouchTwo && isTouchThree) : ((/android|avantgo|blackberry|googlebot-mobile|iemobile|opera mini|kitkat|palmos|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|iphone|ipod|phone|ipad|pie|tablet|silk|up\.browser|up\.link|playbook|webos|wos/i.test(window.navigator.userAgent.toLowerCase()) && !isDesktopIE) || window.navigator.platform === 'MacIntel' && isTouch);
console.log('1. '+isTouch+' 2. '+isTouchTwo+' 3. '+isTouchThree+' 4. '+/android|avantgo|blackberry|googlebot-mobile|iemobile|opera mini|kitkat|palmos|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|iphone|ipod|phone|ipad|pie|tablet|silk|up\.browser|up\.link|playbook|webos|wos/i.test(window.navigator.userAgent.toLowerCase())+' 5. isDevice: '+isDevice)
Redresses issues, a) where IE11 desktop navigator.userAgent
string claims to be "tablet", and b) where iPadOS User Agent in Safari is same as on MacOS Catalina. (Untested by me, but it follows this line of argumentation
quote
https://developer.apple.com/forums/thread/119186
unquote
and should work. I'm depending on it. (See edit.)
Note that my answer is compatible with Client Hints. (Future answers should also be, I think.) For browsers that support navigator.userAgentData
, you won't need navigator.userAgent
.
Sorry about the long strings. In ES6 it looks prettier.
To do a media query, just attach a style sheet based on true or false output.
edit: How to detect iPad and iPad OS version in iOS 13 and Up?
if (navigator.maxTouchPoints > 1) {
// browser supports multi-touch
}
I thought it was > 0
. (Corrected in code.)
I tried various options on various browsers and found that you need to use the hover and pointer both -
@media (hover:none), (pointer:coarse){
.show_on_touch {display:inline}
}
The hover:none tells you that there is no hover supported, but some browsers on some platforms lie.
And pointer:coarse tells you that fine pointer control is absent, so it may be finger based.
© 2022 - 2024 — McMap. All rights reserved.
@media (hover: none) { … }
does exactly what one expect it to do - matches devices with hover, this is not the same thing as matching multitouch support – Jumada