鼠标悬停时间CSS HTML

时间:2015-09-23 08:56:50

标签: html css hover

我的问题是我希望容易。我有鼠标悬停,显示一些文字。

我的问题是,在鼠标消​​失后,有没有机会让这个悬停持续几秒钟?我只能使用html + css。

2 个答案:

答案 0 :(得分:2)

这不是一个完美的答案。因为,完美的答案是。顺便说一句,你可以延迟过渡。



div {
  display: inline-block;
  padding: 5px;
  margin: 10px;
  border: 1px solid #ccc;
  transition: 0s background-color;
  transition-delay: 1s;
}
div:hover {
  background-color: red;
  transition-delay: 0s;
}

<div>Hover Me</div>
&#13;
&#13;
&#13;

来源:http://dabblet.com/gist/1498446

答案 1 :(得分:1)

.example {
transition: 0s;  /* zero it if you don't want to add a fade */
transition-delay:2s; /* delay will last for 2 seconds */
}

.example:hover {
background-color:blue;
transition-delay:0s; /* the delaying happens here */
}