【发布时间】:2016-12-12 21:17:16
【问题描述】:
我尝试了很多选项,但没有任何效果。 在my website 上单击任何帖子,使用wordpress single.php 在模态框中打开一个iframe(使用Featherlight.js)
问题是我无法将模态框适合里面的图像,到目前为止我只是决定将尺寸放入 html 代码中。
<div id="post">
<a href="#" data-featherlight="#featherlight-<?php echo get_the_ID(); ?>">
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail('post-thumbnails');
}
?>
</a>
<div class="myframe">
<iframe class="lightbox" src="<?php the_permalink(); ?>" width="400" height="600" id="featherlight-<?php echo get_the_ID(); ?>" style="border:none;" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
您认为可以使用 javascript 或 jquery 吗? 我只知道 html、css 和一点 php,但如果我必须...
谢谢!
【问题讨论】:
-
好吧,我可能显然需要使用 Ajax...
标签: javascript wordpress iframe responsive-design lightbox