能否仅用css在移动浏览器上实现触摸和离开时对应元素样式变化


代码如下


 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可以办到手机浏览器上和电脑一样的效果吗?谢谢了

Android css

Courier 11 years, 4 months ago

css


 a:active{
}

or

js


 a.on('touchstart', function(){
})

a.on('touchend', function(){
})

midir answered 11 years, 4 months ago

Your Answer