How to implement DIV's blur function

How to implement DIV's blur function

Use anti-shake to make DIV disappear when the mouse moves out

Since the div tag itself does not support the onblur event, for a div that pops up when a button is clicked, we want to make it disappear when the div loses focus, which cannot be achieved using onblur.

However, you can use onmouseout and events to make DIV disappear when it loses focus. There may be a problem with directly using onmouseout to achieve disappearance: if the position of your button and the position of the pop-up div do not overlap, the onmouseout event will be triggered immediately when the mouse moves, which is useless.

Use the combination of anti-shake, onmouseout, and onmouseover to achieve a good blur event experience

    /**
     *Mouse moves over div event*/
    function moveOverEvent(ele,outTimer) {
        let overTimer = null;
        return function(){
            clearTimeout(outTimer); //If the div does not disappear, if another div moves in, clear the last event that was moved out clearTimeout(overTimer); //Anti-shake overTimer = setTimeout(()=>{        
                ele.style.display = "block";
            },500);                     
        }
    }
    /**
     *Mouse out*/
    function moveOutEvent(ele,outTimer) {
        return function(){
            clearTimeout(outTimer); //Anti-shake outTimer = setTimeout(()=>{ //Wait 500ms after moving out, and then disappear this div
                ele.style.display = "none";
            },500);
        }
    }

Then I accidentally discovered that the blur event can be implemented by adding the tabindex attribute to the div, so the above code may have been written in vain. (PS I feel the above experience is better, reducing a lot of false touches)

//After setting tabindex, the element is dotted by default, which can be removed by setting ouline=0 (IE sets hidefocus="true")
<div tabindex="0" outline=0" hidefocus="true"></div>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Solution for Baidu site search not supporting https (tested)

>>:  MySQL index failure principle

Recommend

User experience analysis of facebook dating website design

<br />Related article: Analysis of Facebook&...

MySQL slow query and query reconstruction method record

Preface What is a slow query and how to optimize ...

MySQL cursor functions and usage

Table of contents definition The role of the curs...

A comparison between the href attribute and onclick event of the a tag

First of all, let's talk about the execution ...

Implementation example of react project from new creation to deployment

Start a new project This article mainly records t...

Detailed tutorial on installing Docker and docker-compose suite on Windows

Table of contents Introduction Download and insta...

Solve the problem when setting the date to 0000-00-00 00:00:00 in MySQL 8.0.13

I just started learning database operations. Toda...

Solution to the problem that mysql local login cannot use port number to log in

Recently, when I was using Linux to log in locall...

Datagrip2020 fails to download MySQL driver

If you cannot download it by clicking downloadlao...

Example of MySQL slow query

Introduction By enabling the slow query log, MySQ...

Display and hide HTML elements through display or visibility

Sometimes we need to control whether HTML elements...

Two implementation codes of Vue-router programmatic navigation

Two ways to navigate the page Declarative navigat...