Basecamp 风格游览页面 - jquery 使用导航菜单替换 div
我正在尝试美化我网站上的旅游页面,我喜欢 37signals 的 Basecamp 旅游的外观: http://basecamphq.com/tour/#/communicate
我假设他们使用 Jquery 或其他一些相当于交换 div 的东西,但我是一个完全的 jquery 菜鸟,不知道如何去做。
如果有人有任何建议或资源向我指出这方面的问题,我将不胜感激。
干杯!
I'm trying to spruce up a tour page on my site, and I love the way 37signals' Basecamp tour looks: http://basecamphq.com/tour/#/communicate
I assume they use Jquery or some other equivalent to swap divs, but I am a total jquery noob and am not sure how to go about this.
If anyone has any suggestions or resources to point me to regarding this, it would be much appreciated.
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将在每个子页面的游览页面上都有导航链接,它们可能是这样的:
注意链接中的 data-content-id 属性,您将相应的 div 标签的 ID 放入其中作为匹配的方式他们起来。
您还可以将每个游览“子页面”放在自己的 div 中。您的游览页面将包含如下代码:
使用 CSS,您可以隐藏除第一个 div 之外的所有 div。这将进入你的CSS文件:
现在你只需要使用jquery切换点击链接的可见性:
你可以使用其他动画,或者如果你想要的话,只使用.show()和.hide()..
You would have your navigation links on the tour page for each sub-page, they might be like this:
Notice the data-content-id attribute in the links, you put the ID of the corresponding div tag into those as a way to match them up.
You would also have each of your tour "sub-pages" in their own div. Your tour page would contain code like this:
Using CSS, you can then hide all div's except the first one. This would go in your CSS file:
Now you just need to switch the visibility on click of the links with jquery:
You can use other animations, or just .show() and .hide() if you want..