0

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

4

1 回答 1

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.您将需要一些客户端脚本。

于 2012-07-10T10:48:28.523 回答