android - 能否仅用css在移动浏览器上实现触摸和离开时对应元素样式变化
PHP中文网
PHP中文网 2017-04-17 11:24:16
0
1
295

代码如下

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

PHP中文网
PHP中文网

认证高级PHP讲师

répondre à tous(1)
伊谢尔伦

css

a:active{
}

or

js

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

a.on('touchend', function(){
})
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!