代码如下
css:
a{
display:block;
width:250px;
height:60px;
float:left;
background:url(./button1.jpg) no-repeat;
}
a:hover {display:block;
width:250px;
height:60px;
float:left;
background:url(./button2.jpg) no-repeat; }
html:
<p><a href="#"></a></p>
在电脑上鼠标悬停移开两张图片会相应改变,在手机浏览器上触摸一下后会图片变化,松开后图片却变不回来了。请问大神仅用css可以办到手机浏览器上和电脑一样的效果吗?谢谢了
css
or
js