| Server IP : 167.235.67.158 / Your IP : 216.73.216.95 Web Server : Apache System : Linux ubuntu-8gb-nbg1-1 6.8.0-111-generic #111-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 11 23:16:02 UTC 2026 x86_64 User : upstairsbar.co.uk ( 982) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/iwillruhl/ |
Upload File : |
// Lottie animation init for showreel page
(function() {
function initShowreelLottie() {
var container = document.getElementById('showreel-animation');
if (!container) return;
if (typeof lottie === 'undefined') {
setTimeout(initShowreelLottie, 150);
return;
}
try {
var anim = lottie.loadAnimation({
container: container,
renderer: 'svg',
loop: false,
autoplay: true,
path: 'Comp 1.json'
});
var isReversing = false;
anim.addEventListener('complete', function() {
if (!isReversing) {
isReversing = true;
anim.setDirection(-1);
anim.play();
} else {
isReversing = false;
anim.pause();
setTimeout(function() {
anim.setDirection(1);
anim.play();
}, 5000);
}
});
} catch (e) {
console.error('Lottie error:', e);
}
}
window.addEventListener('load', function() {
initShowreelLottie();
});
})();