1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- new WOW().init();
- jQuery(document).ready(function($) {
-
- $(window).bind('load', function() {
- $('#loader').fadeOut(100);
- });
-
- $(function() {
- $("img.alignnone").lazyload();
- });
- /*============================================
- Navigation
- ==============================================*/
- $('.nav-toggle').on('touchstart click', function(e) {
- e.preventDefault();
- $( this ).toggleClass( 'active' );
- });
- $(function dw_hidenav() {
- var headerHeight = $('.navbar').height();
- $(window).on('scroll', { previousTop: 0 },
- function() {
- var currentTop = $(window).scrollTop();
- if (currentTop < this.previousTop) {
- if (currentTop > 0 && $('.navbar').hasClass('fixed')) {
- $('.navbar').addClass('visible');
- $('.site-title a').removeClass('light');
- } else {
- $('.navbar').removeClass('visible fixed');
- }
- }
- else {
- $('.navbar').removeClass('visible');
- if (currentTop > headerHeight && !$('.navbar').hasClass('fixed')) $('.navbar').addClass('fixed');
- }
- this.previousTop = currentTop;
- }
- );
- });
- });
|