我如何使用这个 JQuery 插件来移动对象的 X 位置?
http://desandro.com/demo/masonry/docs/
我让它显示得很好。但是,
我如何修改这个插件,以便当有人单击一个对象时,它会产生很好的“重新排序”效果,如下所示: http://desandro.com/demo/masonry/docs/filtering.html#demo
它将对象“X”位置在列表中向上或向下移动?
修改这个来做到这一点容易吗?
http://desandro.com/demo/masonry/docs/
I got this to display nicely. But,
How can I modify this plugin so that when someone clicks an object, it does the nice "re-ordering" effect as seen in: http://desandro.com/demo/masonry/docs/filtering.html#demo
And it moves the object "X" positions up or down the list?
Is it easy to modify this to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从所有元素都有
float:left;
的那一刻起,当用户单击按钮时,将隐藏具有特定类的元素,例如,如果他单击灰色,则会隐藏红色和黑色。在 jquery 中,上面的示例如下所示:这将隐藏所有红色和黑色类的元素,添加 css 属性
display
和值none
。这将使浏览器看不到它们,因此其余元素将根据您为它们设置的浮动位置放置在不同的位置。
From the moment that all elements has
float:left;
when the user click the button hide the element with specific classes, for example if he clicks grey, then will hide red and black. In jquery the above example would be like this:This will hide all elements with classes red and black, adding the css property
display
and valuenone
.This will make the browser don't "see" them, so the rest elements will be positioned in a different place, according the floats you have set for them.