如何向 jQuery masonry 添加基于锚点的 URL 导航
您好,我正在寻找一种将基于锚点的 URL 导航添加到 jQuery masonry 的方法。
以下是示例: http://desandro.com/demo/masonry/filtering.html
我是试图能够直接引导人们进入可过滤的类(即:../filtering.html#red)
似乎应该有一个简单的解决方案,但我是一个Javanoob,所以我真的很感激一些帮助!谢谢!
Hello I'm looking for a way to add anchor-based URL navigation to jQuery masonry..
Here's the example:
http://desandro.com/demo/masonry/filtering.html
I'm trying to be able to direct people straight to a filterable class (ie: ../filtering.html#red)
Seems like there should be an easy solution but I'm a Javanoob so I would really appreciate some help! Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了该页面上的代码(在其之后,仍在
document.ready
中),您可以执行以下操作:这只需单击
;
例如,当您转到page.htm#red
时。或者,如果您希望立即隐藏它们,请执行以下操作:
这不需要过滤按钮,它只是隐藏与散列中的类不匹配的任何内容,如下所示:
page.htm#classToShow
。In addition to the code on that page (after it, still in
document.ready
) you could do this:This just performs a click on the
<a href="#red">
when you go topage.htm#red
for example.Or, if you want them immediately hidden, do this:
This doesn't require the filtering buttons, it just hides anything not matching the class in the hash, like this:
page.htm#classToShow
.