Is there a way to simulate my own transition and the functionality of "sliding whole pages", as you see on the iPhone, but inside a web browser?
I want one HTML page to move, and the new HTML page will take its place after clicking the button.
The button cannot be permanent. So if you had a persistent title with buttons that contained content inside the box, that would be wrong. I need to shift the whole web page.
Will the slides made in HTML5 be what I need? Thank you in advance for your help!
Editing: I also thought about the possibility of creating two full-sized DIVs side by side with one hidden from the overflow: hidden page, and then using CSS transitions to click the button, and then move one DIV from the screen and the other, but I don’t know how to do it.
Another really tricky point is that my DIV containers must be dynamic and 100% width and height. I can not use fixed sizes.
EDIT:
Using the scrollTo and localscroll functions developed by Ariel Flesler I was able to fill 99% of what I'm looking for. However, at the very end of development, I ended up in a huge road block. Here is an image that I hope will help explain what I'm trying to do:

My problem is that the main content area is a fixed position with auto-overflow-y so that I can hold the scroll bar for the DIV between the header and footer. But the problem is that when I start the sliding animation of my DIV by clicking on my button, the fixed content area does not move, but only the header and footer are moved. If I change the location of the main content area to “relative,” everything moves as I want, but I lose the scroll positioning.
If someone can understand this, I will be very grateful to you!
(I would post a link to what I have, but I can’t. This is a confidential work for the company)
Thanks in advance!
EDIT I am working on a review of all this information. I will answer in a couple of days. Thank you all for your contribution!