__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Nextend\SmartSlider3\Slider\Feature;
class LayerMode {
private $slider;
public $playOnce = 0;
public $playFirstLayer = 1;
public $mode = 'skippable';
public $inAnimation = 'mainInEnd';
public function __construct($slider) {
$this->slider = $slider;
$this->playOnce = intval($slider->params->get('playonce', 0));
$this->playFirstLayer = intval($slider->params->get('playfirstlayer', 1));
switch ($slider->params->get('layer-animation-play-mode', 'skippable')) {
case 'forced':
$this->mode = 'forced';
break;
default:
$this->mode = 'skippable';
}
switch ($slider->params->get('layer-animation-play-in', 'end')) {
case 'end':
$this->inAnimation = 'mainInEnd';
break;
default:
$this->inAnimation = 'mainInStart';
}
}
public function makeJavaScriptProperties(&$properties) {
$params = $this->slider->params;
$properties['perspective'] = max(0, intval($params->get('perspective', 1500)));
$properties['layerMode'] = array(
'playOnce' => $this->playOnce,
'playFirstLayer' => $this->playFirstLayer,
'mode' => $this->mode,
'inAnimation' => $this->inAnimation
);
}
}| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Align.php | File | 1.66 KB | 0664 |
|
| Autoplay.php | File | 2.98 KB | 0664 |
|
| BlockRightClick.php | File | 424 B | 0664 |
|
| Controls.php | File | 1.15 KB | 0664 |
|
| Focus.php | File | 1.61 KB | 0664 |
|
| LayerMode.php | File | 1.41 KB | 0664 |
|
| LazyLoad.php | File | 1.4 KB | 0664 |
|
| MaintainSession.php | File | 423 B | 0664 |
|
| Margin.php | File | 956 B | 0664 |
|
| Optimize.php | File | 3.91 KB | 0664 |
|
| PostBackgroundAnimation.php | File | 253 B | 0664 |
|
| Responsive.php | File | 33.24 KB | 0664 |
|
| SlideBackground.php | File | 14.63 KB | 0664 |
|
| TranslateUrl.php | File | 678 B | 0664 |
|