Javascript Pop-Up when Mouse Hovers toward Browser Bar/Back Button(鼠标悬停在浏览器栏/后退按钮上时弹出 Javascript)
问题描述
我想在这个页面上模仿这个确切的功能.(将鼠标移向顶部浏览器栏)
I would like to imitate this exact feature on this page. (Move mouse toward the top browser bar)
http://my-personal-growth.com/personal-growth/what-anthony-robbins-teaches-about-emotions-and-meaning
我想我只需要知道如何创建鼠标悬停动作,其余的我应该能够自己处理.
I guess all i need to know is how to create the hovering mouse action, the rest I should be able to handle myself.
有教程吗?我不懂js.
Any tutorials? I don't know js.
谢谢大家.
推荐答案
您可以使用 window.onmouseout 事件或在您正在使用的页面上的元素上使用 onmouseout.
You could use window.onmouseout event or use onmouseout on the elements on the page you are using.
类似这样的:
<html>
<head>
<title>onmouseout test</title>
<style type="text/css">
.my_box { border: 1px solid red; }
</style>
<script type="text/javascript">
window.onmouseout = mouseout;
function mouseout()
{
alert("mouseout event detected!");
}
</script>
</head>
<body>
<div class="my_box">
<p>move the mouse pointer away from the element it is on<br />
to fire the mouseout event.</p>
</div>
</body>
</html>
这篇关于鼠标悬停在浏览器栏/后退按钮上时弹出 Javascript的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:鼠标悬停在浏览器栏/后退按钮上时弹出 Javascript
基础教程推荐
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01