我在一个FancyBox Widget
内开了一个FancyBox Iframe
。
在 FancyBox Iframe 中,我看到了我想要的所有数据;
现在,当 FancyBox Widget 出现时,我无法设置宽度和高度;
如何设置Height and Width
FancyBox Widget?
这就是我初始化 FancyBox Iframe 的方式:
$this->widget('application.extensions.fancybox.EFancyBox', array(
'target' => 'a.referrallink',
'id' => 'referrallink',
'config' => array(
'type' => 'iframe',
'width' => 1000,
'height' => 600,
),));
这就是我初始化 FancyBox 小部件的方式:
$this->widget('application.extensions.fancybox.EFancyBox', array(
'target' => 'a.fitGraphic',
'id' => 'fitGraphic',
'config' => array(
'min-width' => 300,
'min-height' => 300,
'width'=>300,
'height'=>300,
'autoDimensions'=> true,
),));