iFrame 内的固定元素

发布于 2024-10-27 10:32:34 字数 88 浏览 5 评论 0原文

我之前可能以某种方式问过这个问题 =) 但仍然有人知道 iFrame 中是否可以有固定元素?我的意思是固定 i 与整个浏览器窗口的关系?

谢谢你!

I probably asked this question before in a way =) But still, does anyone know if it's possible to have a fixed element inside an iFrame? I mean fixed i relation to the whole browser window?

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野稚 2024-11-03 10:32:34

否 - 您不能在 iframe 的边界之外显示项目。

No - you cannot display items within an iframe outside of its boundaries.

不知在何时 2024-11-03 10:32:34

“Facebook 应用程序 iframe”的解决方案 - 您的应用程序位于 iFrame 中,当用户向下滚动时,整个页面都向下滚动,facebook 和 iframe:

通常使用 JavaScript,您将像这样定位固定元素:

top = window.height() / 2 - $(id).height() / 2
left = window.width() / 2 - $(id).width() / 2

从内部iFrame 这样做:

top = window.parent.pageYOffset + window.parent.height() / 2 - $(id).height() / 2
left = window.width() / 2 - $(id).width() / 2

Solution for "Facebook app iframe" - you have your app in a an iFrame, when the user scrolls down, the whole page is scrolling down, both facebook and the iframe:

Using JavaScript normally you would position your fixed element like so:

top = window.height() / 2 - $(id).height() / 2
left = window.width() / 2 - $(id).width() / 2

From within iFrame do this:

top = window.parent.pageYOffset + window.parent.height() / 2 - $(id).height() / 2
left = window.width() / 2 - $(id).width() / 2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文