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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T06:14:47+00:00 2026-05-31T06:14:47+00:00

I have implemented Responsive Slider on my test server: http://test-orange.com/resp/ If you watch the

  • 0

I have implemented Responsive Slider on my test server:
http://test-orange.com/resp/

If you watch the slideshow you’ll see that as each slide fades out and the next fades in, the background shows during the fade.

I do not want the background to show like this. I want each slide image to fade seemlessly to the next image.

Anyone know how I can modify the responsiveslides.js code to do this?
I think this is the part that needs to be edited:

      if (settings.auto === true) {
        setInterval(function () {
          $this.find(':first-child').fadeOut(fadetime, function () {
            $(this).css(hidden);
          }).next($slide).fadeIn(fadetime, function () {
            $(this).css(visible);
          }).end().appendTo($this);
        }, parseFloat(settings.speed));
  • 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-31T06:14:48+00:00Added an answer on May 31, 2026 at 6:14 am

    If you want a seamless fade, you won’t get it with fade. When node fades, it looses opacity. With linear fade, on the half way, both nodes are half-opaque. One would assume 50% + 50% would sum to 100% and give a fully opaque image mixed fifty-fifty, but this is light, not oranges, it doesn’t sum like so. With light it is like this:

    opacity = layerA + (layerB * layerA)
    

    What you’ll end up with is a 75% opacity and that’s what leaves the remaining 25% for the background to seep through from underneath in the middle of the fade. That’s what cross-fade does. For extended reasoning see this nice question and its answer(s).

    For smooth transition attaining 100% opacity full-time you need a different technique. You need to fade in the new slide over the previous, which does not fade at all. It stays at 100% and this way the background doesn’t have a chance. Once the next slide is faded-in, you hide the previous one.

    Generally, instead of this:

    $previous.fadeOut(fadetime);
    $next.fadeIn(fadetime);
    

    you need this:

    $next.fadeIn(fadetime, function(){
        $previous.hide();
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have implemented an ASP.NET http handler. It appears to me that there is
I have implemented a python webserver. Each http request spawns a new thread. I
I have implemented a really simple C# Http Server using HttpListener within a windows
I have implemented an ajax-polling script that calls an action in the server Controller
I have implemented an HTTPOperations class in Android that can successfully produce an HTTP
I have implemented ntlmv2 for lync-server login in an custom made lync client.The message
I have implemented the two classes shown at http://tomcat.apache.org/tomcat-6.0-doc/aio.html which gives a messenger application
I have implemented an Android code that calls a SOAP web service. The web
I have been reading about the responsive web pattern and I have successfully implemented
I have implemented a image gallery where in each image is differentiated by its

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.