[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
perpustakaan
/
template
/
default-dz
/
partials
/
[
Home
]
File: bg.php
<!-- Background ============================================= --> <div class="s-background animated fadeIn"> <!-- Gradient Effect ============================================= --> <div class="gradients"> <?php if($sysconf['template']['run_gradient_animation']) : ?> <div class="green"></div> <div class="beach"></div> <div class="mint"></div> <div class="purple"></div> <div class="default"></div> <div class="pink current"></div> <?php endif; ?> <div class="<?php echo $sysconf['template']['default_gradient'] ?>"></div> </div> <?php if($sysconf['template']['background_mode'] == 'video') : ?> <video loop autoplay muted> <source src='<?php echo $sysconf['template']['dir']; ?>/default/video/bg.mp4' type='video/mp4' /> Your browser does not support the video tag. </video> <?php elseif($sysconf['template']['background_mode'] == 'image') : ?> <img class="slider" src='<?php echo $sysconf['template']['dir']; ?>/default/img/4.jpg'/> <img class="slider" src='<?php echo $sysconf['template']['dir']; ?>/default/img/3.jpg'/> <img class="slider" src='<?php echo $sysconf['template']['dir']; ?>/default/img/2.jpg'/> <img class="slider" src='<?php echo $sysconf['template']['dir']; ?>/default/img/1.jpg'/> <?php else: ?> <div class="s-background-none"></div> <?php endif; ?> </div> <?php /** * Running this animation may need high memory * Please make sure your computer has high performance * Use with your own risk */ if($sysconf['template']['run_gradient_animation']) : ?> <script> $(document).ready(function(){ // Animate background color // ============================================ var bg = $('.gradients'); function fade() { var divs = bg.children(); $(".current").transition({opacity: 1}, 5000, 'linear', function() { $('.current').removeClass('current'); firstDiv = divs.first(); firstDiv.addClass('current').css({opacity: 0}); firstDiv.appendTo(bg); fade(); }); } fade(); }); </script> <?php endif; ?>