鼠标悬停在浏览器的关闭按钮上时,我将显示一个弹出窗口。将鼠标悬停在“调整大小”按钮旁边的“X”按钮上

时间:2015-10-19 07:00:06

标签: javascript jquery html

我有一个要求,当浏览器窗口的关闭(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;
                } 
            });`

0 个答案:

没有答案