Sindbad~EG File Manager
// JavaScript Document
$(window).scroll(function(){
$('nav').toggleClass('scrolled', $(this).scrollTop() > 50);
});
$(document).ready(function(){
let scroll_link = $('.scroll');
//smooth scrolling -----------------------
scroll_link.click(function(e){
e.preventDefault();
let url = $('body').find($(this).attr('href')).offset().top;
$('html, body').animate({
scrollTop : url
},1600);
$(this).parent().addClass('active');
$(this).parent().siblings().removeClass('active');
return false;
});
});
(function($) {
"use strict";
var tpj = jQuery;
var revapi24;
// Preloader
jQuery(window).on('load', function() {
jQuery("#status").fadeOut();
jQuery("#preloader").delay(350).fadeOut("slow");
});
// on ready function
jQuery(document).ready(function($) {
});
})(jQuery);
$(document).ready(function(){
$(window).scroll(function () {
if ($(this).scrollTop() > 50) {
$('#back-to-top').fadeIn();
} else {
$('#back-to-top').fadeOut();
}
});
// scroll body to 0px on click
$('#back-to-top').click(function () {
$('body,html').animate({
scrollTop: 0
}, 400);
return false;
});
});
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists