我有一个要求,当浏览器窗口的关闭(X)按钮发生鼠标悬停时,我需要显示一个带有摇动效果的弹出窗口。
$(document).ready(function() {
$( "#shakeform" ).effect( "shake" );
});
我尝试在Mouseover上显示弹出窗口,但它无效。
var mouse_position_switch = false;
`$(document.body).on('mouseleave', function(e) {
// alert("2");
// Check if mouse is near the top
if(mouse_position_switch){
// Show modal
$.popupWindow('webpage.html', { height: 300, width: 400 });
}
});
// Event listener to set if mouse is near the top or not
$(document.body).on('mousemove', function(e) {
// alert("1");
if(e.clientY < 10){
mouse_position_switch = true;
}else{
mouse_position_switch = false;
}
});`