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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T08:57:29+00:00 2026-05-18T08:57:29+00:00

I’m wondering if it is at all possible to create a Jquery animation with

  • 0

I’m wondering if it is at all possible to create a Jquery animation with an image that is linkable. I’ve looked around but so far I’ve had no such luck finding something I could fiddle with the coding to get the desired effect I’m looking for, or a plugin.

Basically what I want to do is have “tabs” on the left side of a layout I am currently designing that will “pull out” when you hover your mouse over them and link to the a page. Currently, I have designed these tabs graphically as part of the layout design, though if coding blocks to rest right where the border of the layout is would be more doable, I am willing to do that.

To be more specific on the animation I am trying to achieve, I want to animate it so it seems as if you are “pulling” the tab out when you hover your mouse over it, while the other tabs stay stationary. Then, when you move your cursor to say, the tab below it (Or another tab), the pulled out tab will move back to it’s “original size” and the new tab pulls out like the first one. I’d really like to have the animation move the original tab back in while the new tab pulls out, but I am fine with only the tab pull out animation, and the original tab just “snapping” back to it’s original state. I know there is coding and functions just for image swapping, but again I have been unable to find any functions, coding, or plugins to do this kind of animation that is clickable/linkable with an image.

Anything at all, even a “this kind of thing is not doable” would be appreciated. I’m looking to find out if its possible and how I would achieve it, whether it be what plugins could do it, functions, coding, tutorials that are similar, or other forms of website coding/programming that could achieve this. Again, if it’s not doable with images, I’d be fine with ways to do this with block links.

I’m pretty comfortable with HTML and CSS, but Jquery is a fairly new area I’m still learning in.

  • 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-18T08:57:30+00:00Added an answer on May 18, 2026 at 8:57 am

    This is easily doable.

    HTML

    <ul>
        <li><a href="/about">about</a></li>
        <li><a href="/contact">contact</a></li>
    </ul>
    

    CSS

    ul {
       width: 300px;
       position: relative;
       overflow: hidden;
    }
    
    ul li {
       width: 300px;
       position: absolute;
       left: -280px;
       background: url(/images/li-background.png) no-repeat;
    }
    

    This assumes the 20px on the far right of your tabs is the bit that is always shown.

    jQuery

    $(function() {
    
        $('ul li').hover(function() {
            $(this).stop().animate({ left: 0 }, 100);
        }, function() {
            $(this).stop().animate({ left: -280 }, 100);
        });
    
    });
    

    Whenever I need to use jQuery’s hover(), I use hoverIntent(). This plugin prevents the hover over and out events from being fired if the user just casually moves the cursor over the element.

    Also keep in mind that touch devices don’t have a hover event. You will need to make sure they work correctly.

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

Sidebar

Related Questions

No related questions found

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.