gpt4 book ai didi

css - 为移动设备禁用悬停和事件伪类

转载 作者:行者123 更新时间:2023-11-28 13:33:40 24 4
gpt4 key购买 nike

是否可以仅针对移动设备禁用悬停和事件伪类?

我找到了

html.touch {
/* Touch is enabled */
}

html.no-touch {
/* Touch is disabled */
}

这看起来很整洁。但我无法让它工作。

代码如下,可以在这里测试:http://jsfiddle.net/5qb2J/

<html>
<head>
<style type="text/css">
#button{background:url("http://www.webstuffshare.com/wp-content/uploads/2010/03/button3.jpg") no-repeat 0 0;display:block;width:201px;height:67px;}
#button:hover{background-position:0px -67px;}
#button:active{background-position:0px -134px;}
#button span{position:absolute;top:-99999999em;}
</style>
</head>
<body>
<a id="button" href="#"><span>this is foo</span></a>
</body>
</html>

编辑

我正在用这个

<?php // detect mobile
$Mobile = FALSE;
if
(strstr(strtolower($_SERVER["HTTP_USER_AGENT"]), "android") ||
strstr(strtolower($_SERVER["HTTP_USER_AGENT"]), "webos") ||
strstr(strtolower($_SERVER["HTTP_USER_AGENT"]), "iphone") ||
strstr(strtolower($_SERVER["HTTP_USER_AGENT"]), "ipod") ||
strstr(strtolower($_SERVER["HTTP_USER_AGENT"]), "ipad") ||
strstr(strtolower($_SERVER["HTTP_USER_AGENT"]), "zune"))
{
$Mobile = TRUE;
}
?>

<?php
If ($Mobile == FALSE)
{
echo <<<escapethis
some html here
escapethis;
}
?>

使用escapethis这个词的行不能以空格开头

最佳答案

html.touchhtml.no-touch 之类的声音正在与类似 modernizr 的特征检测库一起使用,它将进行各种功能测试,并根据这些测试的结果将类添加到 html 元素。

在那种情况下,你会想做这样的事情:

html.no-touch #ElementThatShouldHaveNoHoverEventOnTouchDevices:hover{
//do your stuff
}

<div id="ElementThatShouldHaveNoHoverEventOnTouchDevices">
hello
</div>

关于css - 为移动设备禁用悬停和事件伪类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10659577/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com