| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- (function($) {
- "use strict";
- ////////////////////////////////
- // Carga de header and footer //
- ////////////////////////////////
- $('header').load('header.html');
- $('footer').load('footer.html');
- /*--------------------------
- preloader
- ---------------------------- */
- $(window).on('load', function() {
- var pre_loader = $('#preloader');
- pre_loader.fadeOut('slow', function() {
- $(this).remove();
- });
- });
- /*----------------------------
- Navbar nav
- ------------------------------ */
- var main_menu = $(".main-menu ul.navbar-nav li ");
- main_menu.on('click', function() {
- main_menu.removeClass("active");
- $(this).addClass("active");
- });
- /*----------------------------
- wow js active
- ------------------------------ */
- new WOW().init();
- $(".navbar-collapse a:not(.dropdown-toggle)").on('click', function() {
- $(".navbar-collapse.collapse").removeClass('in');
- });
- //---------------------------------------------
- //Nivo slider
- //---------------------------------------------
- $('#ensign-nivoslider').nivoSlider({
- effect: 'random',
- slices: 15,
- boxCols: 12,
- boxRows: 8,
- animSpeed: 700,
- pauseTime: 9000,
- startSlide: 0,
- directionNav: true,
- controlNavThumbs: false,
- pauseOnHover: true,
- manualAdvance: false,
- });
- /*----------------------------
- Scrollspy js
- ------------------------------ */
- var Body = $('body');
- Body.scrollspy({
- target: '.navbar-collapse',
- offset: 80
- });
- /*---------------------
- Venobox
- --------------------- */
- var veno_box = $('.venobox');
- veno_box.venobox();
- /*----------------------------
- Page Scroll
- ------------------------------ */
- var page_scroll = $('a.page-scroll');
- page_scroll.on('click', function(event) {
- var $anchor = $(this);
- $('html, body').stop().animate({
- scrollTop: $($anchor.attr('href')).offset().top - 55
- }, 1500, 'easeInOutExpo');
- event.preventDefault();
- });
- /*--------------------------
- Back to top button
- ---------------------------- */
- $(window).scroll(function() {
- if ($(this).scrollTop() > 100) {
- $('.back-to-top').fadeIn('slow');
- } else {
- $('.back-to-top').fadeOut('slow');
- }
- });
- $('.back-to-top').click(function() {
- $('html, body').animate({ scrollTop: 0 }, 1500, 'easeInOutExpo');
- return false;
- });
- $(window).load(function() {
- // var s = $("#sticker");
- // console.log(s);
- // console.log(pos);
- $(window).scroll(function() {
- var s = $("#sticker");
- var pos = s.position();
- var windowpos = $(window).scrollTop() > 100;
- if (windowpos > pos.top) {
- s.addClass("stick");
- } else {
- s.removeClass("stick");
- }
- });
- });
- /*----------------------------
- Parallax
- ------------------------------ */
- var well_lax = $('.wellcome-area');
- well_lax.parallax("50%", 0.4);
- var well_text = $('.wellcome-text');
- well_text.parallax("50%", 0.6);
- /*--------------------------
- collapse
- ---------------------------- */
- var panel_test = $('.panel-heading a');
- panel_test.on('click', function() {
- panel_test.removeClass('active');
- $(this).addClass('active');
- });
- /*---------------------
- Testimonial carousel
- ---------------------*/
- var test_carousel = $('.testimonial-carousel');
- test_carousel.owlCarousel({
- loop: true,
- nav: false,
- dots: true,
- autoplay: true,
- responsive: {
- 0: {
- items: 1
- },
- 768: {
- items: 1
- },
- 1000: {
- items: 1
- }
- }
- });
- /*----------------------------
- isotope active
- ------------------------------ */
- // portfolio start
- $(window).on("load", function() {
- var $container = $('.awesome-project-content');
- $container.isotope({
- filter: '*',
- animationOptions: {
- duration: 750,
- easing: 'linear',
- queue: false
- }
- });
- var pro_menu = $('.project-menu li a');
- pro_menu.on("click", function() {
- var pro_menu_active = $('.project-menu li a.active');
- pro_menu_active.removeClass('active');
- $(this).addClass('active');
- var selector = $(this).attr('data-filter');
- $container.isotope({
- filter: selector,
- animationOptions: {
- duration: 750,
- easing: 'linear',
- queue: false
- }
- });
- return false;
- });
- });
- //portfolio end
- /*---------------------
- Circular Bars - Knob
- --------------------- */
- if (typeof($.fn.knob) != 'undefined') {
- var knob_tex = $('.knob');
- knob_tex.each(function() {
- var $this = $(this),
- knobVal = $this.attr('data-rel');
- $this.knob({
- 'draw': function() {
- $(this.i).val(this.cv + '%')
- }
- });
- $this.appear(function() {
- $({
- value: 0
- }).animate({
- value: knobVal
- }, {
- duration: 2000,
- easing: 'swing',
- step: function() {
- $this.val(Math.ceil(this.value)).trigger('change');
- }
- });
- }, {
- accX: 0,
- accY: -150
- });
- });
- }
- })(jQuery);
- function getParameterByName(name) {
- name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
- var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
- results = regex.exec(location.search);
- return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
- }
|