CSS hover not being ignored on touch-screen devices(触摸屏设备上的 CSS 悬停不会被忽略)
问题描述
我添加了一个带有 html 按钮的 div:
I've appended a div with a html button:
$('.nav').append('<button class="restart">Restart</button>');
该按钮具有用于悬停的 css 属性.我的问题是,当点击触摸屏设备上的按钮时,按钮会保持悬停状态,直到点击另一个元素.
The button has css properties for hover. My problem is that when tapping the button on a touch-screen device, the button retains its hover state until another element is tapped.
在使用触屏设备浏览时,有什么方法可以忽略悬停属性?
Is there any way that the hover property can be ignored when browsing with a touch-screen device?
推荐答案
不是一个理想的解决方案,但感谢@dualed 的领先!
Not an ideal solution, but thanks @dualed for the headstart!
@media screen and (min-device-width:768px) and (max-device-width:1024px) /*catch touch screen devices */
{
button.restart:hover
{
/* replicate 'up' state of element */
}
}
这篇关于触摸屏设备上的 CSS 悬停不会被忽略的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:触摸屏设备上的 CSS 悬停不会被忽略
基础教程推荐
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 动态更新多个选择框 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01