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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T00:16:50+00:00 2026-06-08T00:16:50+00:00

I have a fullscreen overlay, I have it set up in jfiddle currently so

  • 0

I have a fullscreen overlay, I have it set up in jfiddle currently so it just fades in
http://jsfiddle.net/9NJP9/1/
What I’d like it to do instead of fade is animate down from the top of the screen down to the bottom; slides down. My site is longer then the screen height, when the button is clicked though I don’t really want it to slide down from the top of the entire site all the way to the bottom of the page, just from the top of the screen to the bottom of the screen, and then stay there even when someone scrolls. I’m just not sure how to manipulate the css to do this.

Any help I can get with this would be great, thanks.

  • 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-08T00:16:53+00:00Added an answer on June 8, 2026 at 12:16 am

    Here, http://jsfiddle.net/9NJP9/8/

    For the slide down effect, instead of changing the opacity from 0 to 1, you could change the top property from something like -500px or -50% to 0. In the fiddle, I’ve set it to transition from -100% to 0. Also, instead of CSS for just webkit browsers, you need to make your effect cross-browser compatible. I’ve modified the CSS accordingly.

    .fullscreen_hide {
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        -ms-transition-property: all;
        transition-property: all;
    
        -webkit-transition-duration: 1s;
        -moz-transition-duration: 1s;
        -o-transition-duration: 1s;
        -ms-transition-duration: 1s;
        transition-duration: 1s;
    
        -webkit-transition-delay: 0s;
        -moz-transition-delay: 0s;
        -o-transition-delay: 0s;
        -ms-transition-delay: 0s;
        transition-delay: 0s;
        position: absolute;
        z-index: 1000;
        height: 100%;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        opacity: 1;
        top: -100%;
        bottom: 0;
        right: 0;
        left: 0;
        background: #141414;
    }
    
    .fullscreen_show {
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        -ms-transition-property: all;
        transition-property: all;
    
        -webkit-transition-duration: 1s;
        -moz-transition-duration: 1s;
        -o-transition-duration: 1s;
        -ms-transition-duration: 1s;
        transition-duration: 1s;
    
        -webkit-transition-delay: 0s;
        -moz-transition-delay: 0s;
        -o-transition-delay: 0s;
        -ms-transition-delay: 0s;
        transition-delay: 0s;
        position: absolute;
        height: 100%;
        z-index: 1000;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        opacity: 1;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background: #141414;
    }
    

    As @MichaelGiovanniPumo pointed out, you should try out jQuery as well. It makes life much more comfortable. 🙂

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

Sidebar

Related Questions

I have a fullscreen application wrtten in C++ and would like to open a
I have a NSWindow that I'm putting into fullscreen mode. I would like to
I have a fullscreen window with the Topmost property set to true. Whenever an
I'd like to have a non-fullscreen Activity only taking about one third of full
I have a full screen overlay for an About page, which sits over the
In short: I want to have two fullscreen views, where I can switch between
i have the following code which switches some fullscreen-background-images (fadeOut, fadeIn). setInterval(function() { var
I have tried to make the fullscreen feature of a SDI application with splitter
I have a WPF application that is a fullscreen kiosk app. It's actually a
I have an app that shows video all the time in fullscreen mode. So

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.