你如何防止花式框的关闭按钮自动隐藏?
how do you prevent fancy box's close button from auto hiding?
我有以下iframe情况。
<a _ngcontent-c27="" data-color="red" data-fancybox="id_ALPHA" data-opacity="1" data-src="https://startalkcreate.org/resource-modal/" data-type="iframe" href="javascript:;">
<span _ngcontent-c27="" style="background-color:teal;color:white;padding:4px;">Browse Resources Repository</span>
</a>
它很好地弹出 windows 的 facny 方式。但是关闭(关闭 [X] )按钮会在几秒钟后消失。不太精明的用户很难关闭弹出窗口并最终使用后退按钮。有没有办法确保 x 始终保持可见?
您可以使用 idleTime
选项来禁用自动隐藏,只需将 data-idle-time="false"
添加到您的 link。
我有以下iframe情况。
<a _ngcontent-c27="" data-color="red" data-fancybox="id_ALPHA" data-opacity="1" data-src="https://startalkcreate.org/resource-modal/" data-type="iframe" href="javascript:;">
<span _ngcontent-c27="" style="background-color:teal;color:white;padding:4px;">Browse Resources Repository</span>
</a>
它很好地弹出 windows 的 facny 方式。但是关闭(关闭 [X] )按钮会在几秒钟后消失。不太精明的用户很难关闭弹出窗口并最终使用后退按钮。有没有办法确保 x 始终保持可见?
您可以使用 idleTime
选项来禁用自动隐藏,只需将 data-idle-time="false"
添加到您的 link。