CSS :hover works only when mouse moves(CSS :hover 仅在鼠标移动时有效)
问题描述
我创建了一个非常基本的示例:
I created a very basic sample:
HTML
<div id="bla"></div>
CSS
#bla {
width:400px;
height:400px;
background-color:green;
display:none;
}
#bla:hover{
background-color:red;
}
如您所见,它是一个最初隐藏的 DIV,当鼠标悬停在它上面时会改变颜色.
As you can see it's a DIV that is initially hidden and changes color when mouse hovers over it.
此 JavaScript 在 2 秒后将其取消隐藏
This JavaScript unhides it after 2 seconds
setTimeout(function() {
document.getElementById('bla').style.display="block";
},2000)
但是,如果您将鼠标放在 DIV 即将出现的位置上 - 当它出现时 - 它会以未悬停状态出现.只有当您实际移动鼠标时才会发生悬停效果.
But if you place your mouse over location where the DIV is about to appear - when it appears - it appears in unhovered state. Only when you actually move the mouse - hover effect takes place.
这是一个演示.运行它并立即将鼠标放在结果窗格上.
Here's a demo. Run it and immediately place mouse over result pane.
这是设计使然吗?有没有办法(最好不使用 JS)来检测 DIV 悬停?
Is this by design? Is there a way (without JS preferable) to detect that DIV is hovered?
推荐答案
虽然你可以使用 opacity
,@BrianPhillips 提到,但它在 IE 8 中不起作用.我不知道纯 CSS 解决方案,但这里有一个足够简洁的 Javascript 解决方法:
While you can use opacity
, @BrianPhillips mentioned, it doesn't work in IE 8. I don't know of a pure CSS solution, but here's a concise enough Javascript workaround:
window.onmousemove=function(event){
ev = event || window.event;
if (event.pageX <= 400 && event.pageY <= 400){
document.getElementById('bla').style.backgroundColor= "red";
} else {
document.getElementById('bla').style.backgroundColor= "green";
}
}
setTimeout(function() {
document.getElementById('bla').style.display="block";
},2000)
演示
这篇关于CSS :hover 仅在鼠标移动时有效的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:CSS :hover 仅在鼠标移动时有效
基础教程推荐
- 我什么时候应该在导入时使用方括号 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 动态更新多个选择框 2022-01-01