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 8968495
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T17:27:44+00:00 2026-06-15T17:27:44+00:00

http://apw-design.com/ Taking a look at this webpage, I have a div id which starts

  • 0

http://apw-design.com/ Taking a look at this webpage, I have a div id which starts off as a thin line across the page. When the mouse enters the menu the box moves across it and across part of the logo, when the mouse then enters the logo directly from the menu it changes color correctly but uses the mouse leave animation from the menu. If you scroll from the page across to the logo, it shows what the box should transform to.

The scrip for the animations is below:
http://pastebin.com/wU4c10NJ
I’ve uploaded the css file as well for reference:
http://pastebin.com/RgWZQTD9

  • 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-06-15T17:27:45+00:00Added an answer on June 15, 2026 at 5:27 pm

    It looks like the problem is your eachDelay function inside your menus ‘mouseleave’ function. The delay will cause your #whiteline animation to fire after your logos ‘mouseenter’ function. Heres the chain of events:

    1. Menu mouseleave fires
    2. Menu eachDelay loops through menu items
    3. Logo mouseenter fires
    4. Menu eachDelay reaches last item and overrides Logo mouseenter

    What you could do is introduce a variable to check if the menu no longer has focus and only fires the #whiteline animation if the cursor isn’t on the logo. Here’s a simplified example:

    // Create a variable to check cursor focus
    var lastFocus = "";
    
    $('#menu').mouseenter(function(element) {
        lastFocus = "menu";
        // PLUS YOUR CODE
    });
    
    $('#logo').mouseenter(function(element) {
        lastFocus = "logo";
        // PLUS YOUR CODE
    }); 
    
    $('#menu').mouseleave(function(element) {
        $("#menu ul li").eachDelay(function(index){
            if(index == $("#menu ul li").size() -1){
                // Check if we haven't hovered over the logo whilst the delay was running
                if(lastFocus == "menu"){
                    // Do the animation
                }
            }
        }, 30);
    });
    

    A useful debugging tip is to use console.log("Event foo fired"); at the points in your script that do the animation, that way you open your browser console and tell if the order of things is a little off.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

http://developer.android.com/training/basics/firstapp/building-ui.html I have been following this tutorial, but I have two errors, both R
http://ano-mag.com/black-foil/ please check this url - click the Order Now button on the left
http://jsfiddle.net/mJxn4/ This is very odd: I have a few lines of text wrapped in
http://www.radikalgenc.com/bulten/ekim.htm this is a monthly newsletter. but it does not appear fine on mozilla,
http://jsbin.com/ofudi4/3/edit What this code does you can test for yourselves. Now my question is
http://msdn.microsoft.com/en-us/library/dd371799(v=VS.85).aspx So with a signature like this: BOOL WINAPI AssociateColorProfileWithDevice( PCTSTR pMachineName, PCTSTR pProfileName,
http://u.neighborrow.com/items/recent/ for this page I obviously want to ban links and other spam. The
http://tinyns.com/wtf.php I'm using jQuery Typist to display server benchmarks results. I have the results
http://www.docjar.com/html/api/org/apache/catalina/realm/JDBCRealm.java.html To use this JDBCRealm we need two tables, user and user_role. user table
http://www.example.com?id=05 or http://www.example.com?id=05&name=johnny This is a string. And I want to get the value

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.