0

我将 Yii 与 Bootstrap 一起使用。并尝试从图像文件夹中幻灯片放映一组图像。这是代码,我用来显示幻灯片图像。

$this->widget('bootstrap.widgets.TbCarousel', array(
    'items' => array(
        array(
            'image' => 'images\DSC02786_1.jpg',
            'label' => 'First Thumbnail label',
            'caption' => 'jubiliant mood '),
        array(
            'image' => 'images\siva.jpg',
            'label' => 'Second Thumbnail label',
            'caption' => 'Another caption'),
        array(
            'image' => 'images\siva1.jpg',
            'label' => 'Third Thumbnail label',
            'caption' => 'Yet Another'),
    ),
));

它显示图像,一个接一个,而不是幻灯片。作为一个新手,我找不到我犯的错误。

4

1 回答 1

1

我发现了问题并纠正了。上面的编码需要来自 booster - yii 扩展的文件,但是我的文件错误地访问了引导文件。我删除并重新复制了来自 booster 扩展的文件,现在工作正常。

谢谢你的帮助。

于 2012-12-29T06:07:45.203 回答