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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T16:21:27+00:00 2026-06-13T16:21:27+00:00

I was working with responsive web design and I wanted to slide some images

  • 0

I was working with responsive web design and I wanted to slide some images in to a page. I tried some plugins but the problem with the plugin is it uses width and height property and also assigns position: absolute. So I thought of changing the src of the image myself using js and it worked fine, but can I give some transition effect to it?

Demo fiddle

What I have done is:

var i = 0;
var total = 2;
window.setInterval(function() {
    show_hide();
}, 1000);

function show_hide() {
    var img = $('.image-holder img, .image-holder2 img');
    //alert(img.length);
    if (i % 2 == 0) {
        img[0].src = 'http://digimind.com/blog/wp-content/uploads/2012/02/number2c.png';
        img[1].src = 'http://digimind.com/blog/wp-content/uploads/2012/02/number2c.png';
        i = 0;
    }
    else {
        img[0].src = 'http://healthystartups.com/storage/600px-MA_Route_1.png?__SQUARESPACE_CACHEVERSION=1319542839834';
        img[1].src = 'http://healthystartups.com/storage/600px-MA_Route_1.png?__SQUARESPACE_CACHEVERSION=1319542839834';
    }
    i++;
}

My HTML is as follows:

<div  class="image-holder" >
    <img src="http://healthystartups.com/storage/600px-MA_Route_1.png?__SQUARESPACE_CACHEVERSION=1319542839834"  />
</div>
<div  class="image-holder2" >
    <img src="http://healthystartups.com/storage/600px-MA_Route_1.png?__SQUARESPACE_CACHEVERSION=1319542839834"  />
</div>
  • 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-13T16:21:28+00:00Added an answer on June 13, 2026 at 4:21 pm

    Here’s what I put together. jsFiddle

    javascript

    var img = $(".image-holder img")
    var i = 0;
    var count = img.length - 1;
    
    setInterval(function() {
        showImage(i);
        i++;
        if (i > count) i = 0;
    }, 2000);
    
    function showImage(i) {
        img.eq(i - 1).animate({
            "opacity": "0"
        }, 1000);
        img.eq(i).animate({
            "opacity": "1"
        }, 1000);
    }​
    

    HTML

    <div  class="image-holder" >
    <img src="http://healthystartups.com/storage/600px-MA_Route_1.png?__SQUARESPACE_CACHEVERSION=1319542839834"  />
    
    
    </div>
    <div  class="image-holder" >
    <img src="http://digimind.com/blog/wp-content/uploads/2012/02/number2c.png"  />
    </div>​
    

    CSS

    .image-holder img{ opacity: 0;}
    .image-holder { position: absolute; }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was working with responsive web design and I wanted to slide some images
I'm working ona responsive web application and i need some touch events. So I
I am working on a teaser microsite to briefly explain responsive design to unprofessionals.
In my web application I am working with files. Some files are very large.
I've currently working through a tutorial on responsive webdesign, and I wanted to make
I´m working with jQuery-ui datepicker but I have problems with images and paths. This
I am working with responsive design right now and I made a slider using
I'm working on a web page where I'm making an AJAX call that returns
I'm working on a project and we are gone do a responsive design and
I've started looking into HTML web database storage for some Chrome extension I'm working

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.