Isotope 将此样式添加到项目中:
position: absolute;
left: 0px;
top: 0px;
-webkit-transform: translate3d(0px, 0px, 0px);
是否可以禁用此功能,但仍保持 Isotope 功能?我读过关于
transformsEnabled
的内容,它说禁用它会导致浏览器依赖于上/左定位。我可以反过来做,以便浏览器依赖于 CSS 转换,还是 Isotope 总是依赖于 position: absolute? 最佳答案
事实证明,Isotope 可以在不向 Isotope 项目添加 position: absolute 的情况下工作。这是通过使用 hiddenStyle 和 visibleStyle 定义样式来实现的。一旦实现,这似乎确实需要一些额外的工作,如 http://codepen.io/betweenbrain/pen/bkwuF 所示。希望这有助于让您走上正确的道路。
关于jquery-isotope - IsotopeJS 可以在不添加位置的情况下工作吗 : absolute to the Isotope items?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15483604/