作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的网站上,页面加载时会出现一个弹出窗口,我有三个条件:
代码:
$(document).ready(function () {
// Action on mouseover from pop-up
$('#activity').on("mouseover", function(e) {
('#activity').show();
});
// Action on mouseout from pop-up
$('#activity').on("mouseout", function() {
setTimeout(function() { $("#activity").fadeOut(1500); }, 15000);
});
setTimeout(function() { $("#activity").fadeOut(1500); }, 15000)
})
最佳答案
仅使用 .show() 函数不会停止您调用的超时函数。您需要清除鼠标悬停时的超时功能。
当页面加载时,这会将超时设置为名为timeout
的变量,或者在鼠标关闭时重置它。如果您将鼠标悬停在 Activity 上,则该超时功能将被清除(取消),并在鼠标移开时重新启动
$(document).ready(function () {
var timeout;
// Action on mouseover from pop-up
$('#activity').on("mouseover", function(e) {
clearTimeout(timeout);
});
// Action on mouseout from pop-up
$('#activity').on("mouseout", function() {
timeout = setTimeout(function() { $("#activity").fadeOut(1500); }, 15000);
});
timeout = setTimeout(function() { $("#activity").fadeOut(1500); }, 15000)
});
关于javascript - 鼠标移开 15 秒后隐藏 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33278073/
在我的应用程序中,当 EditText 失去焦点时,我需要做一些事情。编辑 EditText 时,我不能让它失去焦点。在 Windows Phone 中有 this.Focus();方法,但在 and
我正在开发一个应用程序,该应用程序可以更精确地控制拖动对象的放置位置。但是对于电容式触摸屏,用户的手指总是会遮住放置目标。 Android 允许通过覆盖 View.DragShadowBuilder.
我是一名优秀的程序员,十分优秀!