| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/tomicauto/js/ |
Upload File : |
var appMaster = {
preLoader: function(){
imageSources = []
$('img').each(function() {
var sources = $(this).attr('src');
imageSources.push(sources);
});
if($(imageSources).load()){
$('.pre-loader').fadeOut('slow');
}
},
smoothScroll: function() {
// Smooth Scrolling
$('a.smooth-scroll[href*="#"]:not([href="#"])').click(function() {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html, body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
},
reviewsCarousel: function() {
// Reviews Carousel
$('.review-filtering').slick({
slidesToShow: 1,
slidesToScroll: 1,
dots: true,
arrows: false,
autoplay: true,
autoplaySpeed: 5000
});
},
screensCarousel: function() {
// Screens Carousel
$('.filtering').slick({
slidesToShow: 4,
slidesToScroll: 4,
dots: false,
responsive: [{
breakpoint: 1024,
settings: {
slidesToShow: 2,
slidesToScroll: 2,
infinite: true,
dots: true
}
}, {
breakpoint: 600,
settings: {
slidesToShow: 2,
slidesToScroll: 2
}
}, {
breakpoint: 480,
settings: {
slidesToShow: 1,
slidesToScroll: 1
}
}]
});
$('.js-filter-all').on('click', function() {
$('.filtering').slickUnfilter();
$('.filter a').removeClass('active');
$(this).addClass('active');
});
$('.js-filter-one').on('click', function() {
$('.filtering').slickFilter('.one');
$('.filter a').removeClass('active');
$(this).addClass('active');
});
$('.js-filter-two').on('click', function() {
$('.filtering').slickFilter('.two');
$('.filter a').removeClass('active');
$(this).addClass('active');
});
$('.js-filter-three').on('click', function() {
$('.filtering').slickFilter('.three');
$('.filter a').removeClass('active');
$(this).addClass('active');
});
},
animateScript: function() {
$('.scrollpoint.sp-effect1').waypoint(function(){$(this).toggleClass('active');$(this).toggleClass('animated fadeInLeft');},{offset:'100%'});
$('.scrollpoint.sp-effect2').waypoint(function(){$(this).toggleClass('active');$(this).toggleClass('animated fadeInRight');},{offset:'100%'});
$('.scrollpoint.sp-effect3').waypoint(function(){$(this).toggleClass('active');$(this).toggleClass('animated fadeInDown');},{offset:'100%'});
$('.scrollpoint.sp-effect4').waypoint(function(){$(this).toggleClass('active');$(this).toggleClass('animated fadeIn');},{offset:'100%'});
$('.scrollpoint.sp-effect5').waypoint(function(){$(this).toggleClass('active');$(this).toggleClass('animated fadeInUp');},{offset:'100%'});
},
revSlider: function() {
var docHeight = $(window).height();
var mainSlider = $('.tp-banner').revolution({
delay: 9000,
startwidth: 1170,
startheight: docHeight,
hideThumbs: 10,
touchenabled: false,
fullWidth: "on",
hideTimerBar: "on",
fullScreen: "on",
onHoverStop: "off",
fullScreenOffsetContainer: ""
});
},
scrollMenu: function(){
var num = 50; //number of pixels before modifying styles
$(window).bind('scroll', function () {
if ($(window).scrollTop() > num) {
$('nav').addClass('scrolled');
} else {
$('nav').removeClass('scrolled');
}
});
},
placeHold: function(){
// run Placeholdem on all elements with placeholders
Placeholdem(document.querySelectorAll('[placeholder]'));
}
}; // AppMaster
$(document).ready(function() {
appMaster.smoothScroll();
appMaster.reviewsCarousel();
appMaster.screensCarousel();
appMaster.animateScript();
appMaster.revSlider();
appMaster.scrollMenu();
appMaster.placeHold();
});