在 colorbox iframe 上设置正文字体大小
该网站有一个 body{font-size:__px;) 使用 jQuery 根据窗口尺寸动态设置。 onclick 函数打开一个包含 iframe 的颜色框:
$.fn.colorbox({iframe: true, href: $url, <?PHP print COLORBOX_OPTIONS; ?> });
我想将 iframe 的 body{font-size:--px;} 设置为与当前父 body{font-size:--px;} 相同 我该怎么做?
The site has a body{font-size:__px;) dynamically set using jQuery based on the window dimensions.
An onclick function opens a colorbox that contains an iframe:
$.fn.colorbox({iframe: true, href: $url, <?PHP print COLORBOX_OPTIONS; ?> });
I want to set the body{font-size:--px;} of the iframe to be the same as the current parent body{font-size:--px;}
How can I do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 iframe 内执行此代码,它将其主体的
font-size
设置为父窗口主体的font-size
。You can execute this code inside the iframe which will set it's body's
font-size
as parent window's body'sfont-size
.编辑:
我的想法,未经测试!
在 $.colorbox();
附加此
-
编辑:坏
好
让我们知道您的进展如何。
Edit:
Off the top of my head, not tested!
after $.colorbox();
append this
-
EDIT: BAD
GOOD
lets us know how you get on.