Moving the whole page to left and then right

Owais Ahmed

i am looking for this kind of template . Moving the page to left and then page to right. Can anyone tell me how can i make this or is there any javascript example similar to this.

flowstoneknight

Create two <div>s, put them next to each other, make them take up the whole window, and change them as needed.

HTML:

<div class="left">left</div>
<div class="right">right</div>

CSS:

body {
    margin: 0;
}

.left {
    background-color: green;
    bottom: 0;
    left: 0;
    position: fixed;
    top: 0;
    transition: width 1s;
    width: 0;
}

.left.active {
    width: 200px;
}

.right {
    background-color: red;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: left 1s;
}

.right.active {
    left: 200px;
}

JS (width jQuery):

$('.right').on('click', function() {
    $('.left').toggleClass('active');
    $('.right').toggleClass('active');
});

And here's a fiddle.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Moving left right in a JPanel

From Dev

Left/Right Arrows not Moving

From Dev

moving an array image left to right

From Dev

Moving player left and right (touchesbegan)

From Dev

pygame moving left and right issue

From Dev

moving picture box to right and left

From Dev

Scrollbar is moving page content to the left

From Dev

CKeditor justify whole block to left/right/center

From Dev

CKeditor justify whole block to left/right/center

From Dev

moving div with cursor keys left and right

From Dev

How To Get Ball Moving Left and Right?

From Dev

Moving Windows from left to right screen in Unity

From Dev

Moving divs, left and right, outside the box

From Dev

Image keeps moving to the right or left depending on resize

From Dev

Moving a sprite to the left or down is faster than moving it to the right or up

From Dev

.js Scroll left and right of page

From Dev

Google Adsense moves whole page to the left

From Dev

Having the background color on the whole width but keeping some padding left right

From Dev

Moving a platform in 2d space left and right continuosly

From Dev

Moving circle in a straight line from left to the right of canvas

From Dev

VBA locate the first empty cell that occurs in a row by moving left/right

From Dev

How to animate full screen stripes moving from left to right

From Dev

R quantmod chartseries shifting a moving average to the left and right

From Dev

Vintage mode: moving farthest left or right within a wrapped line

From Dev

Moving an div from the top left corner to bottom right using css

From Dev

Animate image like it's moving from right to left

From Dev

Javascript can't acces to HTML(moving object left-right)

From Dev

XNA 4.0 Moving Player left and right doesnt work,why?

From Dev

Vintage mode: moving farthest left or right within a wrapped line

Related Related

  1. 1

    Moving left right in a JPanel

  2. 2

    Left/Right Arrows not Moving

  3. 3

    moving an array image left to right

  4. 4

    Moving player left and right (touchesbegan)

  5. 5

    pygame moving left and right issue

  6. 6

    moving picture box to right and left

  7. 7

    Scrollbar is moving page content to the left

  8. 8

    CKeditor justify whole block to left/right/center

  9. 9

    CKeditor justify whole block to left/right/center

  10. 10

    moving div with cursor keys left and right

  11. 11

    How To Get Ball Moving Left and Right?

  12. 12

    Moving Windows from left to right screen in Unity

  13. 13

    Moving divs, left and right, outside the box

  14. 14

    Image keeps moving to the right or left depending on resize

  15. 15

    Moving a sprite to the left or down is faster than moving it to the right or up

  16. 16

    .js Scroll left and right of page

  17. 17

    Google Adsense moves whole page to the left

  18. 18

    Having the background color on the whole width but keeping some padding left right

  19. 19

    Moving a platform in 2d space left and right continuosly

  20. 20

    Moving circle in a straight line from left to the right of canvas

  21. 21

    VBA locate the first empty cell that occurs in a row by moving left/right

  22. 22

    How to animate full screen stripes moving from left to right

  23. 23

    R quantmod chartseries shifting a moving average to the left and right

  24. 24

    Vintage mode: moving farthest left or right within a wrapped line

  25. 25

    Moving an div from the top left corner to bottom right using css

  26. 26

    Animate image like it's moving from right to left

  27. 27

    Javascript can't acces to HTML(moving object left-right)

  28. 28

    XNA 4.0 Moving Player left and right doesnt work,why?

  29. 29

    Vintage mode: moving farthest left or right within a wrapped line

HotTag

Archive