Can anyone help me with a full page slide to the left and right.
I want to create a fixed header with the links and want to slide the bottom div to the left or right. sample webpage
Can anyone help me with a full page slide to the left and right.
Share
For this example, lets say your main content is x pixels wide.
Create a large div that is 3x pixels wide, which contains 3 inline divs x pixels wide each.
You can now simulate the sliding by adjusting the
margin-leftof the outermost div. Whenmargin-leftis 0, the leftmost child div will be visible. When it equals-x, the middle content will show, and so on.Make sure you set
overflow:hiddenfor the outer div.This should be enough to get you started. Unless you were looking for someone to code it for you.