$(document).ready(function() {
function delay(fnc, ms){ var t = setTimeout(function(){ clearTimeout(t); fnc(); }, ms); }
delay(function(){
$('.mark-wrapper').addClass('move-up');
delay(function(){
$('.info').addClass('opacity-100');
}, 250);
}, 1500);
// watermark
setInterval(function(){
var texts = '
Developed by: Aris T. Macandog
In partnership with XEALFIRE.DEV';
var styles = 'position: relative !important; right: 0 !important; left: 0 !important; bottom: 0 !important; text-align: center !important; color: #0f5132 !important; opacity: 0.75 !important; z-index: 9999999999999 !important; pointer-events: none !important; padding: 1rem !important; padding-right: 1.5rem !important;';
if(document.getElementById('main-wrapper').querySelector('.watermark')) {
var div = document.getElementById('main-wrapper').querySelector('.watermark');
if(div.innerHTML != texts) { document.getElementById('main-wrapper').removeChild(div); return; }
//if(div.getAttribute('style') != styles) { document.getElementById('main-wrapper').removeChild(div); return; }
} else {
var div = document.createElement('div');
div.className = 'watermark';
div.innerHTML = texts;
div.setAttribute('style', styles);
document.getElementById('main-wrapper').appendChild(div);
}
}, 1000);
});