Initial EV files
This commit is contained in:
@@ -0,0 +1,172 @@
|
||||
jQuery(window).on("load", function () {
|
||||
"use strict";
|
||||
|
||||
/* ===================================
|
||||
Loading Timeout
|
||||
====================================== */
|
||||
$("#loader-fade").fadeOut(800);
|
||||
$('.side-menu').removeClass('hidden');
|
||||
});
|
||||
|
||||
jQuery(function ($) {
|
||||
"use strict";
|
||||
|
||||
$(window).on('scroll', function () {
|
||||
if ($(this).scrollTop() > 260) { // Set position from top to add class
|
||||
$('header').addClass('header-appear');
|
||||
} else {
|
||||
$('header').removeClass('header-appear');
|
||||
}
|
||||
});
|
||||
|
||||
//scroll to appear
|
||||
$(window).on('scroll', function () {
|
||||
if ($(this).scrollTop() > 500)
|
||||
$('.scroll-top-arrow').fadeIn('slow');
|
||||
else
|
||||
$('.scroll-top-arrow').fadeOut('slow');
|
||||
});
|
||||
|
||||
//Click event to scroll to top
|
||||
$(document).on('click', '.scroll-top-arrow', function () {
|
||||
$('html, body').animate({scrollTop: 0}, 800);
|
||||
return false;
|
||||
});
|
||||
|
||||
$(".scroll").on("click", function (event) {
|
||||
event.preventDefault();
|
||||
$("html,body").animate({
|
||||
scrollTop: $(this.hash).offset().top - 80
|
||||
}, 1200);
|
||||
});
|
||||
|
||||
$(".scroll-1").on("click", function (event) {
|
||||
event.preventDefault();
|
||||
$("html,body").animate({
|
||||
scrollTop: $(this.hash).offset().top - 200
|
||||
}, 1200);
|
||||
});
|
||||
|
||||
/* ===================================
|
||||
Side Menu
|
||||
====================================== */
|
||||
if ($("#sidemenu_toggle").length) {
|
||||
$("#sidemenu_toggle").on("click", function () {
|
||||
$(".pushwrap").toggleClass("active");
|
||||
$(".side-menu").addClass("side-menu-active"), $("#close_side_menu").fadeIn(700)
|
||||
}), $("#close_side_menu").on("click", function () {
|
||||
$(".side-menu").removeClass("side-menu-active"), $(this).fadeOut(200), $(".pushwrap").removeClass("active")
|
||||
}), $(".side-nav .navbar-nav .nav-link").on("click", function () {
|
||||
$(".side-menu").removeClass("side-menu-active"), $("#close_side_menu").fadeOut(200), $(".pushwrap").removeClass("active")
|
||||
}), $("#btn_sideNavClose").on("click", function () {
|
||||
$(".side-menu").removeClass("side-menu-active"), $("#close_side_menu").fadeOut(200), $(".pushwrap").removeClass("active")
|
||||
});
|
||||
}
|
||||
|
||||
/*===================================
|
||||
Go Top Scroll
|
||||
====================================== */
|
||||
$(function(){
|
||||
// Scroll Event
|
||||
$(window).on('scroll', function(){
|
||||
var scrolled = $(window).scrollTop();
|
||||
if (scrolled > 600) $('.go-top').addClass('active');
|
||||
if (scrolled < 600) $('.go-top').removeClass('active');
|
||||
});
|
||||
// Click Event
|
||||
$('.go-top').on('click', function() {
|
||||
$("html, body").animate({ scrollTop: "0" }, 500);
|
||||
});
|
||||
});
|
||||
|
||||
/* ===================================
|
||||
WOW Animation
|
||||
====================================== */
|
||||
if ($(window).width() > 991) {
|
||||
var wow = new WOW({
|
||||
boxClass: 'wow',
|
||||
animateClass: 'animated',
|
||||
offset: 0,
|
||||
mobile: false,
|
||||
live: true
|
||||
});
|
||||
new WOW().init();
|
||||
}
|
||||
|
||||
/* =====================================
|
||||
Portfolio Carousel
|
||||
====================================== */
|
||||
$('.projects').owlCarousel({
|
||||
loop:true,
|
||||
margin:0,
|
||||
slideSpeed: 3000,
|
||||
slideTransition:'linear',
|
||||
nav:false,
|
||||
dots:false,
|
||||
responsive:{
|
||||
0:{
|
||||
autoplay:true,
|
||||
autoplayTimeout:8000,
|
||||
autoplayHoverPause:true,
|
||||
items:1
|
||||
},
|
||||
600:{
|
||||
items:1
|
||||
},
|
||||
1000:{
|
||||
items:1
|
||||
},
|
||||
}
|
||||
|
||||
});
|
||||
$('.customNextBtn').click(function() {
|
||||
var owl = $('.projects');
|
||||
owl.owlCarousel();
|
||||
owl.trigger('next.owl.carousel');
|
||||
});
|
||||
$('.customPrevBtn').click(function() {
|
||||
var owl = $('.projects');
|
||||
owl.owlCarousel();
|
||||
owl.trigger('prev.owl.carousel', [300]);
|
||||
});
|
||||
|
||||
/* ===================================
|
||||
Reviews Carousel
|
||||
====================================== */
|
||||
$('.reviews-carousel').owlCarousel({
|
||||
loop: true,
|
||||
margin: 30,
|
||||
autoplay: true,
|
||||
nav: false,
|
||||
dots: false,
|
||||
responsive: {
|
||||
0: {
|
||||
items: 1
|
||||
},
|
||||
600: {
|
||||
items: 1
|
||||
},
|
||||
1000: {
|
||||
items: 1
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
/* ===================================
|
||||
Counter
|
||||
====================================== */
|
||||
$('.count').each(function () {
|
||||
$(this).appear(function () {
|
||||
$(this).prop('Counter', 0).animate({
|
||||
Counter: $(this).text()
|
||||
}, {
|
||||
duration: 5000,
|
||||
easing: 'swing',
|
||||
step: function (now) {
|
||||
$(this).text(Math.ceil(now));
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user