Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Facebox 时,我注意到它加载到屏幕左侧,然后跳到中心。有没有解决办法让它从一开始就在中心加载而没有跳跃?
我对 Facebox 1.2 版也有同样的问题。当我回到使用 1.1 版时它消失了。
这是由于 facebox.js 中的第 126 行:
左:385.5
这发生在加载函数中。
如您所见,facebox 的位置已被硬编码。
我通过将此行更改为:
左:$(window).width() / 2 - (490 / 2)
(注意:将我的示例中的 490 更改为 #facebox 表的宽度)