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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:32:15+00:00 2026-05-27T17:32:15+00:00

I have a jQuery cycle script (which I wrote, so it’s not high quality)

  • 0

I have a jQuery cycle script (which I wrote, so it’s not high quality) that basically cycles <li> elements by animating their opacity. For example, say I have three <li> elements. The script would set the opacity of all elements but the first one to 0, then when a “next” button is clicked, it will animate the opacity of the first one to 0, then animate the opacity of the second one to 1, and so forth. At the same time, I have a setInterval running that literally clicks the “next” button every four seconds.

The problem is, if the user clicks the “next” button at the same time as the setInterval pushes it, the opacity of the elements messes up, and some elements end up on top of each other.

Could anyone suggest a solution? Would it work better if I used the .hide() function instead of the .css('opacity')?

EDIT: This is the code

$('ul#news > li').css({opacity:0.0}).filter('ul#news  li.firstNews').css({opacity:1.0});
$('#newsLeft').click(function() {

    var $active = $('ul#news li.active');
    var $next = $active.next().length ? $active.next() : $('ul#news li.firstNews');

        $active.animate({opacity:0.0}, 300, function() {
            //when done animating out, animate next in
            $next.css({opacity:0.0})
                .animate({opacity: 1.0}, 400, function() {
                $active.removeClass('active');
                $next.addClass('active');
        });
    });

    return false; 
}); //clickRight
  • 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-27T17:32:15+00:00Added an answer on May 27, 2026 at 5:32 pm

    Reset the animation timer when the next-button is hovered. Example below.

    var animTimerDelay = 4000,
        animTimerID = null;
    
    function animTick() {
        // Animation code here
    
        resetTimer();
    }
    
    function resetTimer() {
        if (animTimerID !== null) {
            clearTimeout(animTimerID);
        }
    
        animTimerID = setTimeout(animTick, animTimerDelay);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a script that loads in a div with images running jQuery Cycle
I have jQuery to select all font elements that are children of the element
I have a jquery cycle slideshow that slides through 3 big photos and is
I am using the cycle jquery plugin. I have a few images that fade
I have been dabbling around this morning trying to modify the jQuery cycle script
I have a slideshow that uses the Jquery cycle plugin. example of slideshow is
I have a Jquery Cycle slideshow that has a click function to animate a
I currently have jquery Cycle running on a page, but not only find it
I have a jquery cycle script for my website to continually cycle through content
I currently have a site that uses the JQuery cycle plugin. The site uses

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.