本文介绍了等效于移动式aps悬停的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
CSS悬停将是什么以及等效的CSS悬停,仅用于具有触摸屏的设备(如平板电脑和智能手机)?我正在尝试在旋转木马上显示箭头,对于台式机,我知道我可以使用鼠标悬停,但是当没有光标悬停时该怎么用?
What would be and equivalent for CSS hover, just to be used on devices that have a touch screen, like tablet and smartphones? I am trying to show arrows on my carousel, for desktop I know I can use hover but what to use when there is no cursor to hover over?
推荐答案
结合使用:active
选择器和:hover
.
示例
.button:hover, .button:active{
background-color: red;
}
这篇关于等效于移动式aps悬停的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!