I currently have HTML and CSS for a horizontally scrolling parallax site. However, I would like it so when you get to a specific section you're given a vertical parallax scroll instead of a horizontal one.
Check out this site for an example: http://paranorman.com/scene/normans-friends ...you'll see how the horizontal scroll, all of a sudden becomes a vertical scroll...
Check out this JSFiddle: http://jsfiddle.net/L2MZe/
I currently have a horizontally scrolling parallax, with a vertical scrolling div nested inside of it...I'm not really sure how to make the div scroll up, instead of down though.
This is the code I'm using for my 'go-up' div:
#go-up {
background-color:blue;
width:650px;
left:3000px;
overflow-y: scroll;
height:100%;
overflow-x:hidden;
}
Is there a way to make the 'go-up' div start at the bottom of its content (with JS or CSS)? This seems like the easiest way, but if there are other ways I'm open to suggestions.