Bootstrap Carousel不会呈现幻灯片

时间:2012-12-28 13:27:50

标签: php twitter-bootstrap yii

我正在使用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'),
    ),
));

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

1 个答案:

答案 0 :(得分:1)

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

感谢您的帮助。