I'm looking for a good tutorial on how to create a panel style website, or whatever you'd call it. Here's an example of one: http://www.calmdigital.com/. Basically, I'm curious to know how to have the site scroll down to specific marker points upon menu item click instead of going to a new page. I'd build a site like this using a CMS like Joomla, Wordpress, etc. Hope someone has some good recommendations!
It's a combination of anchor links and parallax scrolling effects. Pretty nice site.
Anchor locations are basically done by doing;
<a href="#main-content">Main Content</a>
Then adding another with the ID of the href you just made. So it then scrolls (instantly) down to that location. Using JQuery you can ease the change or animate it.
Hello,
I'm looking for a good tutorial on how to create a panel style website, or whatever you'd call it. Here's an example of one: http://www.calmdigital.com/. Basically, I'm curious to know how to have the site scroll down to specific marker points upon menu item click instead of going to a new page. I'd build a site like this using a CMS like Joomla, Wordpress, etc. Hope someone has some good recommendations!
Cheers,
NW
It's a combination of anchor links and parallax scrolling effects. Pretty nice site.
Anchor locations are basically done by doing;
Then adding another with the ID of the href you just made. So it then scrolls (instantly) down to that location. Using JQuery you can ease the change or animate it.
Awesome! Thank you. That sounds simpler than I thought.