在colorbox中显示评论表和其他信息以及图像

时间:2011-06-11 15:55:37

标签: drupal drupal-7 colorbox

使用colorbox显示评论表单,评论和其他图像相关信息的图像的最佳方式是什么?喜欢facebook的个人资料照片栏图片?

在彩色框中打开像'node / 196?iframe = true'的图像节点要比打开图像慢得多。

1 个答案:

答案 0 :(得分:1)

内联配置参数将是一个解决方案

<style type="text/css">
    .hide-colorbox{display:none}
    #cboxLoadedContent .hide-colorbox{display:block}
</style>

$(".example8").colorbox({inline:true, href:"#inline_example1"});

<div id="inline_example1" class="hide-colorbox">
    <p><strong>This content comes from a hidden element on this page.</strong></p>
</div>

您可以在页面加载时输出所需的html,然后使用css隐藏,或者您可以根据页面布局创建内容。