Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7669757
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T15:40:04+00:00 2026-05-31T15:40:04+00:00

To do this I wrote a script that works fine but only for slow

  • 0

To do this I wrote a script that works fine but only for slow motions of mouse, whenever it goes fast it becomes buggy, what can I improve in this script? Any recommandation?

$(document).ready(function() {
    $.random = function() {return Math.floor(Math.random()*Math.pow(10,17))}

    $.fn.addOverlay = function() {
        $("<div class='overlay'></div>")
                .css({'position': 'absolute', 'background-color': '#9fc4e7', 'opacity': 0.3, 'top': $(this).offset().top, 'left': $(this).offset().left, 'width': $(this).width(), 'height': $(this).height()})
                .attr('overlayId',overlayId)
                .appendTo('body')
                .mouseleave(function(){
                    $(this).remove();
                    $('.overlay').each(function(){
                        if($(this).attr('overlayId')==overlayId) {
                            $(this).remove()
                        }
                    })
                });
        return this
    }

    $('div:not(.overlay),span,h1,h2,h3,h4,table,td,tr,p')
        .mouseenter(function(event){
            event.stopPropagation();
            overlayId = Math.random();
            $(this).addOverlay()
            .find('div,span,h1,h2,h3,h4,table,td,tr,p').each(function(){
                $(this).addOverlay(overlayId)
            })
        })

});
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T15:40:05+00:00Added an answer on May 31, 2026 at 3:40 pm

    Finally I found the way to do it right, I put it here for anyone who land here 😉
    (you can injecte the script in this page to try it ;-))

    $(document).ready(function() {
            $.random = function() {return Math.floor(Math.random()*Math.pow(10,17))}
            $.z_index = 1;
            $.data_ = Array();
    
            $.fn.addOverlay = function(id) {
                $("<div class='overlay' id='"+id+"'></div>")
                        .css({'z-index': $.z_index, 'position': 'absolute', 'background-color': '#9fc4e7', 'opacity': 0.1, 'border': '2px solid black', 'top': $(this).offset().top, 'left': $(this).offset().left, 'width': $(this).outerWidth(), 'height': $(this).outerHeight()})
                        .appendTo('body');
                $.z_index = $.z_index+1;
                return this
            }
    
            $('div,span,h1,h2,h3,h4,table,td,tr,a,ul,li,ol,input,textarea,p,code,img').each(function(){
                rand = $.random();
                $(this).attr('DOMId',rand);
                $.data_.push(Array(
                    rand,
                    {'x': $(this).offset().left,                        'y': $(this).offset().top},
                    {'x': $(this).offset().left+$(this).outerWidth(),   'y': $(this).offset().top},
                    {'x': $(this).offset().left+$(this).outerWidth(),   'y': $(this).offset().top+$(this).outerHeight()},
                    {'x': $(this).offset().left,                        'y': $(this).offset().top+$(this).outerHeight()},
                    false
                ))
            });
    
            $(document).mousemove(function(e){
                for (i in $.data_) {
                    x = e.pageX;
                    y = e.pageY;
                    if((x>$.data_[i][1].x) & (x<$.data_[i][2].x) & (y>$.data_[i][1].y) & (y<$.data_[i][3].y) & (!$.data_[i][5]))  {
                        $('[DOMId="'+$.data_[i][0]+'"]').addOverlay($.data_[i][0]);
                        $.data_[i][5] = true;
                    } else if(((x<$.data_[i][1].x) | (x>$.data_[i][2].x) | (y<$.data_[i][1].y) | (y>$.data_[i][3].y)) & ($.data_[i][5])) {
                        $('#'+$.data_[i][0]).remove();
                        $.data_[i][5] = false;  
                    }
                }
            })
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Not sure this is possible, but looking to write a script that would return
I wrote this script to for a contact form on my website, everything works
I'm trying to write a powershell script that creates an Exchange Mailbox. This works
Can someone write a PHP script that reproduces the functionality of this linux shell
I have to write a Matlab script that does this: The input is 2
I am trying to write a python script that takes record data like this
I wrote this script which counts occurrences of particular pattern in a given file.
$(function(){ $('a').each(function(){ var x=this.href; this.href=www.somesitename.com/filter+this.href; }); }); i wrote the above jQuery script to
Has anyone noticed this behavior? I'm trying to write a script that will trigger
I wrote a simple Linux Script this way export JAVA_HOME=/usr/local/jdk1.6.0_20 export PATH=/usr/local/jdk1.6.0_20/bin LIB_DIR=/home/praveen/lib export

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.