function alturaBG(item, prop){ tamanhoImagemBG = $(item).width(); $(item).css("height", tamanhoImagemBG/prop); $( window ).resize(function() { tamanhoImagemBG = $(item).width(); $(item).css("height", tamanhoImagemBG/prop); }) } function scrollPage(element){ $("html, body").animate({ scrollTop: $(element).offset().top - 50 },600) } function preencher(){ var arquivo = $("#inputtrabalhe").val(); var nomeDoArquivo = arquivo.split("\\"); $("#arquivo").val(nomeDoArquivo[2]); } function modalAlerta(title, content){ $('#alerta').modal('show'); $('#alerta h2.modal-title').html(title); $('#alerta .modal-body p').html(content); setTimeout(function(){ $('#alerta').modal('hide'); },15000) } $(function(){ $(".fancybox").fancybox(); // ativador fancybox $('.gm-style .place-card-large').addClass('dispcardmapa'); //Marcara de campo telefone $('#telefone').mask('(00) 0000-0000#'); $('#celular').mask('(00) 00000-0000#'); $('.gm-style .place-card-large').addClass('dispcardmapa'); wow = new WOW({ mobile: false }) wow.init(); $('img.svg').each(function(){ var $img = jQuery(this); var imgID = $img.attr('id'); var imgClass = $img.attr('class'); var imgURL = $img.attr('src'); jQuery.get(imgURL, function(data){ // Get the SVG tag, ignore the rest var $svg = jQuery(data).find('svg'); // Add replaced image's ID to the new SVG if(typeof imgID !== 'undefined') { $svg = $svg.attr('id', imgID); } // Add replaced image's classes to the new SVG if(typeof imgClass !== 'undefined') { $svg = $svg.attr('class', imgClass+' replaced-svg'); } // Remove any invalid XML tags as per http://validator.w3.org $svg = $svg.removeAttr('xmlns:a'); // Replace image with new SVG $img.replaceWith($svg); }, 'xml'); }); if($(window).width() > 768){ alturaBG(".bannercentro", 2.2); alturaBG(".bg-sobre", 1.8); alturaBG(".imgsobresobre", 1.8); alturaBG(".img-parceiro", 2); alturaBG(".index#ecops .video", 1.8); alturaBG(".sobre#videosobre .video", 1.8); alturaBG(".ecops#video .video", 1.8); alturaBG(".img-blog", 1.8); alturaBG(".blog#conteudo .imgdoblog", 1.8); alturaBG(".miniimg2", 1.8); alturaBG(".imgoutrasnoticias", 1.8); alturaBG(".imgimprensa", 1.8); alturaBG(".img-quem-somos", 1.5); alturaBG(".img-cases ", 1.4); alturaBG(".img-cases-page", 1.4); alturaBG(".iframe-cases-page", 1.8); alturaBG(".img-imprensa-2", 1.4); alturaBG(".index#clientes .clienteslogos .envolvelogo", 1.5); alturaBG(".img-blog-2", 1.4); alturaBG(".imprensa#conteudo .galeria .item a.bg-img-galeria", 1.1); alturaBG(".parceiros#parceiros .bordaparceiros .envolvelogo", 1.8); //Marcador mapit $('#mapa').mapit({ latitude: -20.3105656, longitude: -40.2880236, zoom: 16, type: 'ROADMAP', scrollwheel: false, marker: { latitude: -20.3105656, longitude: -40.2987236, icon: 'img/mark-mapa.png', title: 'CSI', open: false, center: false }, styles: 'GRAYSCALE' }); } else{ alturaBG(".bannercentro", 0.8); alturaBG(".bg-sobre", 1.8); alturaBG(".imgsobresobre", 1.8); alturaBG(".img-parceiro", 2); alturaBG(".index#ecops .video", 1.8); alturaBG(".sobre#videosobre .video", 1.8); alturaBG(".ecops#video .video", 1.8); alturaBG(".img-blog", 1.8); alturaBG(".blog#conteudo .imgdoblog", 1.8); alturaBG(".miniimg2", 1.8); alturaBG(".imgoutrasnoticias", 1.8); alturaBG(".imgimprensa", 1.8); alturaBG(".img-quem-somos", 1.5); alturaBG(".img-cases ", 1.5); alturaBG(".img-cases-page", 1.6); alturaBG(".iframe-cases-page", 1.8); alturaBG(".img-imprensa-2", 1.4); alturaBG(".index#clientes .clienteslogos .envolvelogo", 1.5); alturaBG(".img-blog-2", 1.4); alturaBG(".imprensa#conteudo .galeria .item a.bg-img-galeria", 1.1); // alturaBG(".parceiros#parceiros .bordaparceiros .envolvelogo", 1.5); //Marcador mapit $('#mapa').mapit({ latitude: -20.3105656, longitude: -40.2987236, zoom: 16, type: 'ROADMAP', scrollwheel: false, marker: { latitude: -20.3105656, longitude: -40.2987236, icon: 'img/mark-mapa.png', title: 'CSI', open: false, center: true }, styles: 'GRAYSCALE' }); $(".nav-pills > li").click(function(){ scrollPage('#tabsroll') }); } //para o video ao fechar o modal $("#modaldepoimentos").on('hidden.bs.modal', function (e) { $("#modaldepoimentos iframe").attr("src", $("#modaldepoimentos iframe").attr("src")); }); //autoplay video index $(".video").click(function(){ $(".video iframe")[0].src += "&autoplay=1"; $(".video .svg").fadeOut(300); setTimeout(function(){ $(".video iframe").fadeIn(500); },700); }); //Click para o botão tabalhe conosco escondido $('#botaotrabalhe').click(function(){ $('#inputtrabalhe').click(); }); //pega link do video e joga para o modal $('.adovideo').click(function(){ var valor = $(this).parent().find('.inputvideovalor').val(); $("#modaldepoimentos iframe").attr('src', ''); $("#modaldepoimentos iframe").attr('src', 'https://www.youtube.com/embed/' + valor); setTimeout(function(){ $("#modaldepoimentos").modal('show'); }, 150); }); $('#modaldepoimentos').on('hidden.bs.modal', function () { $("#modaldepoimentos iframe").attr('src', ''); }); //popover $('[data-toggle="popover"]').popover({ trigger: "hover focus" }); }) $(window).resize(function(){ }) $(window).scroll(function(){ if($(window).width() > 768){ alturaBG(".bg-img", 2.2); } else{ alturaBG(".bg-img", 0.8); } })