| Server IP : 172.67.187.206 / Your IP : 172.71.28.156 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Inetpub/www/myschool/bootstrap/js/ |
Upload File : |
(function($) {
'use strict';
// bootstrap dropdown hover
// loader
var loader = function() {
setTimeout(function() {
if($('#loader').length > 0) {
$('#loader').removeClass('show');
}
}, 1);
};
loader();
// Stellar
$(window).stellar();
$('nav .dropdown').on('click', function(){
var $this = $(this);
$this.addClass('show');
$this.find('> a').attr('aria-expanded', true);
$this.find('.dropdown-menu').addClass('show');
}, function(){
var $this = $(this);
$this.removeClass('show');
$this.find('> a').attr('aria-expanded', false);
$this.find('.dropdown-menu').removeClass('show');
});
$('#dropdown04').on('show.bs.dropdown', function () {
console.log('show');
});
// home slider
$('.home-slider').owlCarousel({
loop:true,
autoplay: true,
margin:10,
animateOut: 'fadeOut',
animateIn: 'fadeIn',
nav:true,
autoplayHoverPause: true,
items: 1,
navText : ["<span class='ion-chevron-left'></span>","<span class='ion-chevron-right'></span>"],
responsive:{
0:{
items:1,
nav:false
},
600:{
items:1,
nav:false
},
1000:{
items:1,
nav:true
}
}
});
// owl carousel
var majorCarousel = $('.js-carousel-1');
majorCarousel.owlCarousel({
loop:true,
autoplay: false,
stagePadding: 0,
margin: 10,
animateOut: 'fadeOut',
animateIn: 'fadeIn',
nav: false,
dots: false,
autoplayHoverPause: false,
items: 3,
responsive:{
0:{
items:1,
nav:false
},
600:{
items:2,
nav:false
},
1000:{
items:3,
nav:true,
loop:false
}
}
});
// cusotm owl navigation events
$('.custom-next').click(function(event){
event.preventDefault();
// majorCarousel.trigger('owl.next');
majorCarousel.trigger('next.owl.carousel');
})
$('.custom-prev').click(function(event){
event.preventDefault();
// majorCarousel.trigger('owl.prev');
majorCarousel.trigger('prev.owl.carousel');
})
// owl carousel
var major2Carousel = $('.js-carousel-2');
major2Carousel.owlCarousel({
loop:true,
autoplay: true,
stagePadding: 7,
margin: 20,
animateOut: 'fadeOut',
animateIn: 'fadeIn',
nav: false,
autoplayHoverPause: true,
items: 4,
navText : ["<span class='ion-chevron-left'></span>","<span class='ion-chevron-right'></span>"],
responsive:{
0:{
items:1,
nav:false
},
600:{
items:3,
nav:false
},
1000:{
items:4,
nav:true,
loop:false
}
}
});
var contentWayPoint = function() {
var i = 0;
$('.element-animate').waypoint( function( direction ) {
if( direction === 'down' && !$(this.element).hasClass('element-animated') ) {
i++;
$(this.element).addClass('item-animate');
setTimeout(function(){
$('body .element-animate.item-animate').each(function(k){
var el = $(this);
setTimeout( function () {
var effect = el.data('animate-effect');
if ( effect === 'fadeIn') {
el.addClass('fadeIn element-animated');
} else if ( effect === 'fadeInLeft') {
el.addClass('fadeInLeft element-animated');
} else if ( effect === 'fadeInRight') {
el.addClass('fadeInRight element-animated');
} else {
el.addClass('fadeInUp element-animated');
}
el.removeClass('item-animate');
}, k * 100);
});
}, 100);
}
} , { offset: '95%' } );
};
contentWayPoint();
})(jQuery);