在Android 2.2应用程序中,如果我点击一个图标,我希望它改变,但是当我点击时。悬停和活动不起作用..它保持不变当我点击时没有发生变化......
注意:此代码在 Android 4.0、iOS、BB 和 Windows Mobile 中正常工作。
我的代码
HTML:
<div>
<span>
<a href="page1.html">
<span class="icon"> </span>
</a>
</span>
</div>
CSS:
.icon {background: url(../images/iconContain.png) no-repeat scroll -136px -197px transparent;display: block;height: 40px;width: 43px;}
.icon:active {background: url(../images/iconContain.png) no-repeat scroll -194px -197px transparent;display: block;height:40px;width:43px;}
.icon:hover {background: url(../images/iconContain.png) no-repeat scroll -194px -197px transparent;display: block;height:40px;width:43px;}