| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /******/ (function() { // webpackBootstrap
- var __webpack_exports__ = {};
- /*!************************************************!*\
- !*** ./resources/js/pages/ico-landing.init.js ***!
- \************************************************/
- /*
- Template Name: Skote - Admin & Dashboard Template
- Author: Themesbrand
- Website: https://themesbrand.com/
- Contact: themesbrand@gmail.com
- File: ico landing Init Js File
- */
- // Sticky nav
- $(window).scroll(function () {
- var scroll = $(window).scrollTop();
- if (scroll >= 50) {
- $(".sticky").addClass("nav-sticky");
- } else {
- $(".sticky").removeClass("nav-sticky");
- }
- }); // Countdown
- $('[data-countdown]').each(function () {
- var $this = $(this),
- finalDate = $(this).data('countdown');
- $this.countdown(finalDate, function (event) {
- $(this).html(event.strftime('' + '<div class="coming-box">%D <span>Days</span></div> ' + '<div class="coming-box">%H <span>Hours</span></div> ' + '<div class="coming-box">%M <span>Minutes</span></div> ' + '<div class="coming-box">%S <span>Seconds</span></div> '));
- });
- }); // Clients carousel
- $('#clients-carousel, #team-carousel').owlCarousel({
- items: 1,
- loop: false,
- margin: 24,
- nav: false,
- dots: false,
- responsive: {
- 576: {
- items: 2
- },
- 768: {
- items: 3
- },
- 992: {
- items: 4
- }
- }
- }); // Timeline carousel
- $('#timeline-carousel').owlCarousel({
- items: 1,
- loop: false,
- margin: 0,
- nav: true,
- navText: ["<i class='mdi mdi-chevron-left'></i>", "<i class='mdi mdi-chevron-right'></i>"],
- dots: false,
- responsive: {
- 576: {
- items: 2
- },
- 768: {
- items: 3
- },
- 992: {
- items: 4
- }
- }
- });
- /******/ })()
- ;
|