| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/imobles/application/autoload/Ib/ |
Upload File : |
<?php
Class Ib_Animate{
public $css_class_names = array(
array(
'group' => 'Attention Seekers',
'names' => 'bounce,flash,pulse,rubberBand,shake,swing,tada,wobble,jello'
),
array(
'group' => 'Bouncing Entrances',
'names' => 'bounceIn,bounceInDown,bounceInLeft,bounceInRight,bounceInUp'
),
// array(
// 'group' => 'Bouncing Exits',
// 'names' => 'bounceOut,bounceOutDown,bounceOutLeft,bounceOutRight,bounceOutUp'
// ),
array(
'group' => 'Fading Entrances',
'names' => 'fadeIn,fadeInDown,fadeInDownBig,fadeInLeft,fadeInLeftBig,fadeInRight,fadeInRightBig,fadeInUp,fadeInUpBig'
),
// array(
// 'group' => 'Fading Exits',
// 'names' => 'fadeOut,fadeOutDown,fadeOutDownBig,fadeOutLeft,fadeOutLeftBig,fadeOutRight,fadeOutRightBig,fadeOutUp,fadeOutUpBig'
// ),
array(
'group' => 'Flippers',
'names' => 'flip,flipInX,flipInYY' // ,flipOutX,flipOut
),array(
'group' => 'Lightspeed',
'names' => 'lightSpeedIn' //,lightSpeedOut
),
array(
'group' => 'Rotating Entrances',
'names' => 'rotateIn,rotateInDownLeft,rotateInDownRight,rotateInUpLeft,rotateInUpRight'
),
// array(
// 'group' => 'Rotating Exits',
// 'names' => 'rotateOut,rotateOutDownLeft,rotateOutDownRight,rotateOutUpLeft,rotateOutUpRight'
// ),
array(
'group' => 'Sliding Entrances',
'names' => 'slideInUp,slideInDown,slideInLeft,slideInRight'
),
// array(
// 'group' => 'Sliding Exits',
// 'names' => 'slideOutUp,slideOutDown,slideOutLeft,slideOutRight'
// ),
array(
'group' => 'Zoom Entrances',
'names' => 'zoomIn,zoomInDown,zoomInLeft,zoomInRight,zoomInUp'
),
// array(
// 'group' => 'Zoom Exits',
// 'names' => 'zoomOut,zoomOutDown,zoomOutLeft,zoomOutRight,zoomOutUp'
// ),
array(
'group' => 'Specials',
'names' => 'rollIn' # hinge,rollOut
)
);
public function options($selected){
$cs = $this->css_class_names;
$html = '';
foreach ($cs as $c){
$group = $c['group'];
$names = explode(',',$c['names']);
$opt = '';
foreach ($names as $name){
$s = '';
if('animated '.$name == $selected){
$s = ' selected';
}
$opt .= '<option value="animated '.$name.'"'.$s.'>'.$name.'</option>';
}
$html .= '<optgroup label="'.$group.'">
'.$opt.'</optgroup>';
}
return $html;
}
}