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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T04:20:31+00:00 2026-06-03T04:20:31+00:00

once the page is loaded, I want to appear three DIVs one after another.

  • 0

once the page is loaded, I want to “appear” three DIVs one after another.

how can I do this?

I know how to make a single div appear on mouseover but without any triggering, one after another using css, how can I achieve such smooth transition?

  • 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-03T04:20:33+00:00Added an answer on June 3, 2026 at 4:20 am

    The trick is to perform an animation first to hide all of the elements (when the page loads), and chain that to the animation that will reveal the elements. This is a working example for you in PURE CSS & HTML:

    div.slideIn { 
              position: absolute; 
              top: 200px; 
              width: 100px; 
              height: 100px; 
              border: 1px solid black; 
              animation-name: hide, slideIn;
              animation-duration: 5s;
              animation-timing-function: ease-in;
              animation-iteration-count: 1; 
              -moz-animation-name: hide, slideIn;
              -moz-animation-duration: 5s;
              -moz-animation-timing-function: ease-in;
              -moz-animation-iteration-count: 1; 
              -webkit-animation-name: hide, slideIn;
              -webkit-animation-duration: 5s;
              -webkit-animation-timing-function: ease-in;
              -webkit-animation-iteration-count: 1; 
              -o-animation-name: hide, slideIn;
              -o-animation-duration: 5s;
              -o-animation-timing-function: ease-in;
              -o-animation-iteration-count: 1; 
              opacity: 1;
          } 
          div.slideIn.first {
              left: 50px; 
              animation-delay: 0s, 0s;
              -moz-animation-delay: 0s, 0s;
              -webkit-animation-delay: 0s, 0s;
              -o-animation-delay: 0s, 0s;
          }
          div.slideIn.second {
              left: 150px;
              animation-delay: 0s, 2s;
              -moz-animation-delay: 0s, 2s;
              -webkit-animation-delay: 0s, 2s;
              -o-animation-delay: 0s, 2s;
          }
          div.slideIn.third {
              left: 250px;
              animation-delay: 0s, 4s;
              -moz-animation-delay: 0s, 4s;
              -webkit-animation-delay: 0s, 4s;
              -o-animation-delay: 0s, 4s;
          }
          @keyframes hide
          { 
              from { opacity: 0; } to { opacity: 0 }
          }
          @-moz-keyframes hide
          { 
              from { opacity: 0; } to { opacity: 0 }
          }
          @-webkit-keyframes hide
          { 
              from { opacity: 0; } to { opacity: 0 }
          }
          @-o-keyframes hide
          { 
              from { opacity: 0; } to { opacity: 0 }
          }
          @keyframes slideIn
          { 
                0% { opacity: 0; top: -100px; }
                1% { opacity: 1; top: -100px; }
              100% { opacity: 1; top:  200px; } 
          } 
          @-moz-keyframes slideIn
          { 
                0% { opacity: 0; top: -100px; }
                1% { opacity: 1; top: -100px; }
              100% { opacity: 1; top:  200px; } 
          } 
          @-webkit-keyframes slideIn
          { 
                0% { opacity: 0; top: -100px; }
                1% { opacity: 1; top: -100px; }
              100% { opacity: 1; top:  200px; } 
          } 
          @-o-keyframes slideIn
          { 
                0% { opacity: 0; top: -100px; }
                1% { opacity: 1; top: -100px; }
              100% { opacity: 1; top:  200px; } 
          } 
    ]
        
    <div class="slideIn first">I slid in</div> 
        <div class="slideIn second">I'm 2nd</div> 
        <div class="slideIn third">I'm 3rd</div> 

    Note: Remove the 1% line from the slideIn animation to fade in while sliding in.
    Note: IE does not support CSS3 animations yet.

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

Sidebar

Related Questions

I want to use this jQuery gallery more than once on my page: http://workshop.rs/2010/07/create-image-gallery-in-4-lines-of-jquery/
I want to disable Javascript once a page has already loaded. Why? Because I
Basically it breaks down like this: A master template page is loaded when one
Can't seem to get this one to work... I have a page that hides
I would like for the pop up to appear once the page loads, without
Can anyone help me with the script to refresh the page once . I
In my page load, am I calling ReturnStuff() once or three times? If I
I want my HTML page to load like normal, but I want one section
I want a XAML page to perform an action once every 1/2 second. How
Traditionally, to call a JavaScript function once the page has loaded, you'd add an

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.