I am building a one page website with a "page-content" area and main navigation links. Clicking the links runs an animation and loads content (and html) into the "page-content" area.
I have a decent understanding of MVC but in the context of the javascriptMVC framework, i am having a little problem designing my application. I will be adding alot of JavaScript (and JavaScript animation) as i go forward so i want to give my site a good foundation.
Do i have one model (index) with fixtures containing the data (and html) i want to add?
Do i have one controller for the page(index) with actions(animation then data load from fixtures)?
How do i point each link to an action?
Basically,how do i conceptually design the page using the javascriptMVC framework?