I hover on top of the div with the id="navbar"
and it just won’t seem to do anything.
i have added this to my head
JavaScript
x
2
1
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
2
code:
JavaScript
1
16
16
1
ShowNavbar = function(){
2
// show
3
}
4
HideNavbar = function(){
5
// hide
6
}
7
8
var config = {
9
sensitivity: 1, // number = sensitivity threshold (must be 1 or higher)
10
interval: 200, // number = milliseconds for onMouseOver polling interval
11
over: ShowNavbar(), // function = onMouseOver callback (REQUIRED)
12
timeout: 1500, // number = milliseconds delay before onMouseOut
13
out: HideNavbar() // function = onMouseOut callback (REQUIRED)
14
};
15
$("html #navbar").hoverIntent( config );
16
my old code that worked
JavaScript
1
11
11
1
var timeout
2
const doc = document;
3
const navbar = doc.getElementById("navbar");
4
navbar.onmouseover = function(){
5
navbar.style.top = '0';
6
window.clearTimeout(timeout);
7
timeout = setTimeout(function() {
8
HideNavbar()
9
}, 1500);
10
};
11
Advertisement
Answer
Im not familiar with hoverIntent
, so this is a general observation.
For over
and out
you are not passing a reference to a function, but rather the result of the functions as you are calling the function in your object
Try this instead.
JavaScript
1
8
1
var config = {
2
sensitivity: 1, // number = sensitivity threshold (must be 1 or higher)
3
interval: 200, // number = milliseconds for onMouseOver polling interval
4
over: ShowNavbar, // function = onMouseOver callback (REQUIRED)
5
timeout: 1500, // number = milliseconds delay before onMouseOut
6
out: HideNavbar // function = onMouseOut callback (REQUIRED)
7
};
8