我正在使用PhoneGap 开发一个iPhone 应用程序。为了识别单击按钮的时间,我们更改了按钮的活动图像。
<a class="grid-image btn-image-pharmacycard" onclick="location.href='#prescriptionCard';">
这是CSS:
.btn-image-pharmacycard
{
background: url("../image/iphone/pharmacy-card-iphone.png") no-repeat scroll left top transparent;
}
/* while focus Pharmacy card in gird image, change another image*/
.btn-image-pharmacycard:hover, .btn-image-pharmacycard:focus
{
background-position: left bottom;
}
有时会发生这种情况,在应用程序中,如果不单击按钮,则会显示悬停图像而不是正常图像。
非常感谢任何帮助。