我在iPad上运行网络时遇到了一个问题。即使我在屏幕上触摸,ipad也不会发出咔嗒声。
我通过在html正文中应用以下css来克服这个问题:
h1 {
position: relative;
}
h1:after {
content: "";
position: absolute;
border-bottom: 1px solid red;
width: 100%;
bottom: 0;
}
现在当我触摸它时,它会将触摸检测为点击事件。但是这会导致屏幕闪烁。
以下显示了我的意思:
<h1>Title Here</h1>
&#13;
if (!preg_match('/(?=.*[\W_-])(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}/', $pass)) {
^^^^^^^^^^
&#13;
我如何解决这种副作用?还是有其他选择吗?我想尽可能避免使用jQuery / javascript。
答案 0 :(得分:0)
你试过这个吗?
@media only screen and (device-width: 768px) {
.div2{
cursor:default;
}
}