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.
我正在使用fancybox 3,并希望默认启用缩放。弹出窗口出现后,我必须再次单击它以进行缩放。但我希望图像默认处于缩放状态。
有没有办法在负载上应用这个?
我设法通过在 main.js 中默认启用缩放按钮然后使用此代码并使用锚类作为测试来做到这一点
$(document).ready(function(){ $(".test").fancybox({ openEffect : 'none', closeEffect : 'none', afterShow :function() { $('.fancybox-button--zoom').click(); } }); });