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

  • Home
  • SEARCH
  • 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 9292205
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T20:49:21+00:00 2026-06-18T20:49:21+00:00

Does anybody know how can i achieve that slider site functionality like in here

  • 0

Does anybody know how can i achieve that “slider site” functionality like in here http://dawidtomczyk.pl/

Click on navigation home etc.

After reviewing each of the plug-ins that was used along with that site, none of them where related to the “site slide” effect. After viewing the source code, I think He accomplished it with a custom function for that containing $(window).scroll() and i really didn’t understand how I can accomplish that ‘effect’.

Also I would like to add that I prefer achieving it as much cross-browser as it can get.
IE8+, and the new ones.

Can it be done?

  • 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-18T20:49:22+00:00Added an answer on June 18, 2026 at 8:49 pm

    The idea for doing what you have described would be:

    1. LAYOUT

    a. Create a container div with 100% width and overflow-x:hidden.

    b. Create a child div with width (pages * 100) % (where pages is the number of different pages that you want to display) and position:relative (to animate it later).

    c. Each page is a div contained within the previous div (the one described in b.). These divs have to be adjacent to each other so we would use display: inline-block; and set them to a width of (100 / pages) %.

    The structure would be something like this to display just 2 pages:

       <div id="slider">
           <div id="pages">
               <div>
                   <!-- Content of page 1 -->
               </div><!--
               --><div>
                   <!-- Content of page 2 -->
               </div>
           </div>
       </div>
    

    And the CSS:

       #slider {
           overflow-x: hidden;
           width: 100%;
       }
    
       #pages {
           position: relative;
           width: 200%;
       }
    
       #pages > div {
             display: inline-block;
             width: 50%;
       }
    

    A “graphic” visualization (is not very accurate because all the divs should be overlapped, but I hope it helps to visualize the layout).

    +-SLIDER----------------------------+
    |+---PAGES--------------------------------------------------------------+
    ||+---------------------------------++---------------------------------+|                                 
    |||                                 ||                                 ||
    |||            PAGE 1               ||             PAGE 2              ||
    |||                                 ||                                 ||
    |||                                 ||                                 ||
    |||                                 ||                                 ||
    |||                                 ||                                 ||
    ||+---------------------------------++---------------------------------+|
    |+----------------------------------------------------------------------+
    +------------------------------------+
    

    Because the property overflow-x is set to ‘hidden’, PAGE 2 is not showing.

    2. ANIMATION

    The animation can be done by animating the ‘left’ property from the pages div, taking into account the current width of the slider div.

    I have tried to outline the idea of how to achieve the effect that you have described. If you need the actual code ask me. I hope I was helpful.

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

Sidebar

Related Questions

Does anybody know if you can access the SaevFileDialog control that's used by the
Does anybody know where I can find a utility/application running on Windows that analyses
Does anybody know where I can get a free web crawler that actually works
Does anybody know a Perl library that can parse XML documents and enables me
Does anybody know what component/module/plugin for joomla that i can use to define my
Does anybody know how can I determine where the user clicked in a DataGrid
Does anybody know how I can enable line numbers for Ruby (and Ruby on
does anybody know how i can access a custom cell within the - (void)tableView:commitEditingStyle:forRowAtIndexPath:.
Does anybody know how I can theme the ctools modal window? I've tried putting
Does anybody know How I can get the ckEdtior to work with Selenium. I'm

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.