可触摸区域(iPad)上的悬停按钮状态

时间:2012-07-10 10:37:10

标签: javascript jquery ipad touch

如果我按下按钮更改视图,我想找到按钮上的悬停效果的常规解决方案,如原生iOS和浏览器按钮。在我的情况下,按钮是或标签。当我按下按钮时,它应该被改为按下按钮状态。此外,如果我触摸按钮外的屏幕并将手指移动到按钮,则按钮的状态应更改为按下。反之亦然。 任何解决方案或提示?

1 个答案:

答案 0 :(得分:0)

因为没有光标,触控小工具没有悬停效果。 所以你必须使用

button{background:#fff;}
button:active{background:#ccc;}

对于if I touched screen outside of the button and move finger into button the button's state should be changed to pressed.,您需要一些客户端脚本。