我将 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'),
),
));
它显示图像,一个接一个,而不是幻灯片。作为一个新手,我找不到我犯的错误。