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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T10:33:11+00:00 2026-06-17T10:33:11+00:00

I am trying to use the jQuery UI slide effect for the animated appearance

  • 0

I am trying to use the jQuery UI slide effect for the animated appearance of buttons inside a slidedown menu but the animation of the buttons sliding from left to right seems too jagged especially when there is more code involved.
Is there a way to make it smoother? Is this an issue with the timing of loading the elements’ (images/buttons) position and if so how can I fix it or is it something else?

Here is an example:

http://jsfiddle.net/userdude/ptnaP/6/

The code in the jsFiddle link above includes a live link to the jQuery UI bundle… but using a custom minimized version, including only the core elements and the slide and drop effects libraries doesn’t seem to make the animation any smoother.

jQuery:

$(document).ready(function(){
$(".bc").hide();
$(".bc img").hide();
$("#header").click(function(){

var selectedEffect = "slide";
$(".bc").stop(true, true).delay(500).slideDown(500);
$("#1").stop(true, true).delay(800).effect(selectedEffect,600);
$("#2").stop(true, true).delay(1200).effect(selectedEffect,600);
$("#3").stop(true, true).delay(1600).effect(selectedEffect,600);
});

});

HTML:

<div id="header">Click Me</div>
<div class="bc">
  <img src="http://i49.tinypic.com/t9a8sn.png" id="1" />
  <img src="http://i49.tinypic.com/t9a8sn.png" id="2"/>
  <img src="http://i49.tinypic.com/t9a8sn.png" id="3"/>
</div>

CSS:

div.bc {
border: 15px #1d1d1d solid;
border-radius:10px;
margin:50px auto;
width: 320px;
height: 250px;
}
div.bc img {
margin-top:22px;
width:283px;
height:53px;
}
  • 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-17T10:33:12+00:00Added an answer on June 17, 2026 at 10:33 am

    Alright, try this:

    CSS

    div.bc {
      border: 15px #1d1d1d solid;
      -moz-border-bottom-colors: #171717 #171717 #171717 #171717 #b89f7d #171717 #202020 #3a3939 #b89f7d;
      -moz-border-top-colors: #171717 #171717 #171717 #171717 #b89f7d #171717 #202020 #3a3939 #b89f7d;
      -moz-border-left-colors: #171717 #171717 #171717 #171717 #b89f7d #171717 #202020 #3a3939 #b89f7d;
      -moz-border-right-colors: #171717 #171717 #171717 #171717 #b89f7d #171717 #202020 #3a3939 #b89f7d;
      border-radius:10px;
      margin:50px auto;
      width: 320px;
      padding: 0;
      height: 250px;
    }
    div.bc img {
      display: inline-block;
      margin-top:22px;
      width: 282px;
      border: 19px solid transparent;
      border-top-width: 0;
      border-bottom-width: 0;
      height:53px;
    }
    

    jQuery

    <div id="header">Click Me</div>
    <div class="bc">
      <img src="http://i49.tinypic.com/t9a8sn.png" id="1" />
      <img src="http://i49.tinypic.com/t9a8sn.png" id="2" />
      <img src="http://i49.tinypic.com/t9a8sn.png" id="3" />
    </div>
    <script src="http://code.jquery.com/jquery-1.8.3.js" type="text/javascript"></script>
    <script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js" type="text/javascript"></script>
    <script>
      (function load($) {
        var $bc = $(".bc"),
          $imgs = $bc.children("#1, #2, #3"),
          $header = $("#header"),
          effect = 'slide';
    
        $bc.hide();
        $imgs.hide();
    
        $header.click(function() {
          $bc.hide();
          $imgs.hide();
    
          $bc.stop(true, true).delay(500).slideDown(500);
    
          $imgs
            .filter('#1').delay(800).effect(effect, 600).end()
            .filter('#2').delay(1200).effect(effect, 600).end()
            .filter('#3').delay(1600).effect(effect, 600).end();
        });
      })(jQuery);
    </script>
    

    http://jsfiddle.net/userdude/ptnaP/9/

    See if you can spot the problem. Also, drop the XHTML doctype. Just use <!doctype html>.

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

Sidebar

Related Questions

I'm trying to use the jquery slider to slide from 1-100 and set the
I'm trying to use a multiple handlers slide like jQuery example, but I what
I'm trying to get jQuery Cycle to use unique names from each slide to
I am trying to use jQuery's .data() tool in a jQuery plugin but I'm
I'm trying to use changePage function in jQuery Mobile, but I want the page
I'm trying to use a jquery slider that I've used many times before -
I am trying to use jPanel for collapsible panel, dynamically from an xml content,
This is my first time really trying to use jQuery for my personal portfolio
I'm trying to use the jQuery Cycle plugin (http://jquery.malsup.com/cycle/) to rotate testimonials located within
I'm trying to create a mouseover animation using this code: var menu = {

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.