|
Project Information
Featured
Links
|
This is a Yii framework extension for IntroJs.IntroJs v0.4.0 is used from https://github.com/usablica/intro.js/tags.This extension depends on jQuery.Install
Examples
<?php
$this->widget('application.extensions.introjs.IntroJs',
array(
//'autoStart' => true,
'isDataSafe' => true,
'data' => array(
array(
'id' => 'intro1',
'info' => array(
'data-step' => 1,
'data-intro' => '<b>Intro 1</b>',
)
),
array(
'id' => 'intro2',
'info' => array(
'data-step' => 2,
'data-intro' => '<b>Intro 2</b>',
'data-position' => 'top',
)
),
array(
'id' => 'introStart',
'start' => true,
)
),
)
);
?>
|