123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /*
- author: Boostraptheme
- author URL: https://boostraptheme.com
- License: Creative Commons Attribution 4.0 Unported
- License URL: https://creativecommons.org/licenses/by/4.0/
- */
- /* ====================================================
- ANIMATION
- ================================================= */
- $(function () {
- // animate on scroll
- new WOW().init();
- });
- /* ====================================================
- NAVIGATION
- ================================================= */
- (function($) {
- "use strict"; // Start of use strict
- // Smooth scrolling using jQuery easing
- $('a.js-scroll-trigger[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 - 63)
- }, 1000, "easeInOutExpo");
- return false;
- }
- }
- });
- // Closes responsive menu when a scroll trigger link is clicked
- $('.js-scroll-trigger').click(function() {
- $('.navbar-collapse').collapse('hide');
- });
- // Activate scrollspy to add active class to navbar items on scroll
- $('body').scrollspy({
- target: '#mainNav',
- offset: 64
- });
- // Collapse Navbar
- var navbarCollapse = function() {
- if ($("#mainNav").offset().top > 100) {
- $("#mainNav").addClass("navbar-shrink");
- } else {
- $("#mainNav").removeClass("navbar-shrink");
- }
- };
- // Collapse now if page is not at top
- navbarCollapse();
- // Collapse the navbar when page is scrolled
- $(window).scroll(navbarCollapse);
- // Hide navbar when modals trigger
- $('.portfolio-modal').on('show.bs.modal', function(e) {
- $(".navbar").addClass("d-none");
- })
- $('.portfolio-modal').on('hidden.bs.modal', function(e) {
- $(".navbar").removeClass("d-none");
- })
- })(jQuery); // End of use strict
- /*====================================================
- GALlERY
- ====================================================*/
- $(function() {
- $("#gallery-slider").owlCarousel({
- items: 3,
- smartSpeed: 700,
- autoplay: true,
- loop: true,
- pagination: true,
- slideSpeed: 1000,
- responsive: {
- 0: {
- items: 1
- },
- 500: {
- items: 2
- },
- 767: {
- items: 2
- },
- 992: {
- items: 3
- }
- }
- });
- });
- /* ====================================================
- BACK TO TOP
- =======================================================*/
- (function() {
- $(window).scroll(function() {
- if ($(this).scrollTop() < 50) {
- // hide nav
- $("nav").removeClass("ss-top-nav");
- $("#back-to-top").fadeOut();
- } else {
- // show nav
- $("nav").addClass("ss-top-nav");
- $("#back-to-top").fadeIn();
- }
- });
- }); // End of use strict
|