$( document ).ready(function() { $('.event-menu').on('click', function (e) { var element = $(this); var submenu_side = $('#'+element.data('box')); $('.event-submenu-side').addClass('event-submenu-side-hide'); $('.event-menu').removeClass('select'); submenu_side.removeClass('event-submenu-side-hide'); element.addClass('select'); }); }); /** ESEMPIO PER UTILIZZO SLIDE // ID della slide // | | $( "#slide-example" ).slide_carousel({}); element : '.example-item', // elemento contenuto nel carousel breakpoint : [ // numero di elementi e righe in base alla risoluzione // >risoluzione minima // | numero di items // | | numero di righe // | | | [ 1199, 4, 1], [ 768, 2, 1], [ 0, 1, 1] ] }); ***/ var $slides = $( "#slide" ).slide_carousel({ element : '.slide-item', breakpoint : [ // >risoluzione minima // | numero di items // | | numero di righe // | | | [ 767, 2, 1], [ 0, 1, 1] ] }); /** ESEMPIO PER L'UTILIZZO DELLE IMMAGINI ADATTATIVE // indicare la classe delle immagini $( ".img-adapter-4-3" ).imgadapter({ w_prop : 4, // proporzione per la lunghezza h_prop : 3, // proporzione per l'altezza outer_div : true, // true: non � richiusa all'interno del wrapper, false � rinchiusa all'interno del wrapper breakpoint : [ // risoluzioni in cui ricalcolare il rapporto // >min-width [ 1400], [ 1200], [ 768], [ 480], [ 0] ] }); ***/ // immagini adattative all'interno del riquadro $( ".img-adapter-in-4-3" ).imgadapter({ w_prop : 4, h_prop : 3, outer_div : false }); $( ".img-adapter-in-1-1" ).imgadapter({outer_div : false}); // immagini adattative all'esterno del riquadro $( ".img-adapter-16-9" ).imgadapter({ w_prop : 16, h_prop : 9 }); $( ".img-adapter-4-3" ).imgadapter({ w_prop : 4, h_prop : 3 }); $( ".img-adapter-1-1" ).imgadapter(); /** ESEMPIO PER L'UTILIZZO DELLA GALLERY // indicare la gallery $( ".simple-gallery" ).gallery({ w_prop : 4, // proporzione per la lunghezza h_prop : 3, // proporzione per l'altezza breakpoint : [ // percentuali da applicare in base alla larghezza minima della pagina // >min-width // | width % // | | margin px // | | | [ 768, 33, 15], [ 480, 50, 15], [ 0, 100, 15] ] }); **/ // margine applicato 15px $( ".simple-gallery" ).gallery({ w_prop : 4, // proporzione per la lunghezza h_prop : 3, // proporzione per l'altezza breakpoint : [ // percentuali da applicare in base alla larghezza minima della pagina // >min-width // | width % // | | margin px // | | | [ 768, 33, 5], [ 480, 50, 15], [ 0, 100, 15] ] }); // funzione di successo per il recaptcha di Google var actual_form = null; function onSuccessRecaptcha(token) { actual_form.submit(); } var clmrecaptchaID = []; var clmrecaptchaFunc = []; var onloadCallback = function() { $('.btn-submit').each(function( index ) { recaptcha_form = $(this).closest("form"); $(this).before('
') }); $('.clm-recaptcha').each(function( index ) { recaptcha_form = $(this).closest("form"); // recupera la callback success per il recaptcha di google del form, // se non esiste mette quella di default if (recaptcha_form.data('gcallback') === undefined) gcallback = onSuccessRecaptcha; else gcallback = window[recaptcha_form.data('gcallback')]; // render il recaptcha clmrecaptchaID[index] = this.id; clmrecaptchaFunc[index] = grecaptcha.render(this.id, { 'sitekey' : '6LdIcRgUAAAAAPqxP2-P1h1HaFM2hVJvcGWHO0hs', 'callback' : gcallback, 'size' : 'invisible' }); }); }; $(window).resize(function() { search_box_position(); }); // lunghezza calcolata al caricamento della pagina e ad ogni resize della schermata var lastWidth; // sposta il box della ricerca prima del corpo principale con risoluzione tablet e smartphone // di lato in modalit� desktop function search_box_position() { if ($(window).width() < 992) actualWidth = 991; else actualWidth = 992; if (lastWidth != actualWidth) { lastWidth = actualWidth; if (lastWidth == 991) { var search_box = $('#search-box').detach(); $('#search-box-top').append(search_box).show(); $('#search-box-left').hide(); } else { var search_box = $('#search-box').detach(); $('#search-box-left').append(search_box).show(); $('#search-box-top').hide(); } } } var supported = { date: false, number: false, time: false, month: false, week: false }; $(window).load(function() { // determina i formati supportati dal browser var tester = document.createElement('input'); for (var i in supported) { tester.setAttribute('type',i) tester.value = ':('; if (tester.type === i && tester.value === '') { supported[i] = true; } } $( ".cmsdate" ).each(function() { var el = $(this); el.addClass("datepicker"); el.val(el.data('valueb')); option = { startView: 2, language : "it", autoclose : true, disableTouchKeyboard : false }; if (el.hasClass('age')) { option["startDate"] = "-70y"; option["endDate"] = "-18y"; } if (el.hasClass('age60')) { option["startDate"] = "-60y"; option["endDate"] = "-18y"; } el.datepicker(option); }); $( ".cmstime" ).each(function() { var el = $(this); if (!supported.time) { el.timepicker({ showMeridian: false, defaultTime : false }); } else { el[0].type = 'time'; } }); //$('document').on('change', '#verona', function() { $('#verona').change(function() { var checked = $(this).val(); if (checked != 'Verona') { $('#province').val('').attr('required','required'); $('#col_province').show(); } else { $('#province').val('').removeAttr('required'); $('#col_province').hide(); } }); }); $(document).ready(function() { var NY = Math.round((new Date('8/25/2018 16:00:01')).getTime()/1000); $('#retroclockbox').flipcountdown({ size:'md', beforeDateTime:'8/25/2018 16:00:01', tick:function(){ var nol = function(h){ return h>9?h:'0'+h; } var range = NY-Math.round((new Date()).getTime()/1000), secday = 86400, sechour = 3600, days = parseInt(range/secday), hours = parseInt((range%secday)/sechour), min = parseInt(((range%secday)%sechour)/60), sec = ((range%secday)%sechour)%60; return nol(days)+' '+nol(hours)+' '+nol(min)+' '+nol(sec); } }); }); // lunghezza calcolata al caricamento della pagina e ad ogni resize della schermata var actualWidth; $( document ).ready(function() { $("#datanasc").birthdayPicker({ dateFormat : "littleEndian", sizeClass: "form-control validate[required] birthdayPicker_select", monthFormat: "long", minAge: 18 }); /* $("#datanasc2").birthdayPicker({ dateFormat : "littleEndian", sizeClass: "form-control validate[required] birthdayPicker_select", monthFormat: "long", minAge: 0 }); */ if ($(window).width() < 992) { lastWidth = 10000; search_box_position(); } else { lastWidth = 992; } var $myGroup = $('#accordion'); var $first_accordion_show = true; $("#accordion .panel:first .collapse").collapse('show'); $myGroup.on('show.bs.collapse','.collapse', function(e) { $myGroup.find('.collapse.in').collapse('hide'); }); $myGroup.on('shown.bs.collapse','.collapse', function(e) { if (!$first_accordion_show) { $id = $(e.target).data("id"); $heading_offset = ($("#heading"+$id).offset().top); $top_content = 0; if ($(window).width() < 768) $top_content = $('#top_content').height(); if ($(document).scrollTop() > ($heading_offset - $top_content)) $(document).scrollTop($heading_offset - $top_content); } $first_accordion_show = false; }); var accordion_list = $(".panel-group .panel-collapse"); accordion_list.first().addClass("in"); // abilitazione input associato a checkbox $('input[name="tipo"]').on('change', function() { var id = $(this).data('id'); $('[data-fx="checkbox-input"]').prop( "disabled", true ).prop("required", false); if (id != "") $('#'+id).prop( "disabled", false ).prop("required", true); }); // abilitazione input associato a checkbox $('input[name="orario[]"]').on('change', function() { var anyBoxesOrarioChecked = false; $('input[name="orario[]"]').each(function() { if ($(this).is(":checked")) { anyBoxesOrarioChecked = true; } }); if (anyBoxesOrarioChecked) $('input[name="orario[]"]').prop("required", false); else $('input[name="orario[]"]').prop("required", true); }); // pulsante di conferma del form // memorizza il form dell'elemento (utilizzato alla conferma del recaptcha) // effettua la validation HTML5 // se andato a buon fine $('.btn-submit').on('click', function (e) { var error = false; actual_form = $(this).closest("form"); // recupera la classe da applicare in caso di successo var func_check = actual_form.data('check'); if (func_check !== undefined) { var fn = window[func_check]; if (typeof fn === "function") error = fn.apply(null, [this]); } if ( error ) // esco da on click return false; // ricerca il recaptcha del form cmlrecaptcha = actual_form.find('.clm-recaptcha'); cmlrecaptcha_id = -1; for (var i = 0; i < clmrecaptchaID.length; i++) { if (clmrecaptchaID[i] == cmlrecaptcha[0].id) cmlrecaptcha_id = i; } if (typeof actual_form[0].checkValidity != 'undefined' && !actual_form[0].checkValidity()) { } else { e.preventDefault(); // esegue il recaptcha se esiste per il form altrimenti richiama la funzione di successo if (cmlrecaptcha_id != -1) { grecaptcha.reset(clmrecaptchaFunc[cmlrecaptcha_id]); grecaptcha.execute(clmrecaptchaFunc[cmlrecaptcha_id]); } else { if (actual_form.data('gcallback') === undefined) gcallback = onSuccessRecaptcha; else gcallback = window[actual_form.data('gcallback')]; gcallback(); } } }); $('[data-toggle="tooltip"]').tooltip(); $( ".table" ).wrap( "
" ); $('.carousel').carousel(); $('.modal').modal('hide'); $('.dropdown-submenu a').click(function(){ if ($(this).next().hasClass('dropdown-menu')) { $('.dropdown-submenu > .dropdown-menu').css('display','block'); return false; } }); //One Animated var is_iOS = ( /iPhone|iPad|iPod/i.test(navigator.userAgent) ); // le animazioni waypoint laterali estendono la pagina causando problemi di visualizzazione nei sistemi operativi IOS // le animazioni waypoint disabilitate if(is_iOS) { $('.animated').css("opacity", "1"); } else { $('.animated').waypoint(function() { var myAnimated = $(this).data('animated'); var oneSomeAnimated = $(this).data('oneanimated'); // animazione da eseguire una singola volta if (oneSomeAnimated == true) { // animazione non e' stata gia' eseguita in tal caso la esegue if (!($(this).hasClass(myAnimated))) $(this).toggleClass($(this).data('animated')).css("opacity", "1"); // animazione da eseguire sempre } else $(this).toggleClass($(this).data('animated')); }, { offset: '80%' }); } // Effect input $(document).on("blur", 'form input, form textarea', function(){ if($(this).val().length !== 0) { $(this).addClass('filled'); } else { $(this).removeClass('filled'); } }); // Effect input $(document).on("blur", 'form input, form textarea, form select', function(){ if($(this).val().length !== 0) { $(this).addClass('filled'); } else { $(this).removeClass('filled'); } }); // visualizza il form per contattare l'autore $("#users-contact").on('click', function(event) { $( '#form_users_ajax' ).toggle(); }); function updateFileList() { var filesToUpload = $(' #filesToUpload ') var fileList = $(' #fileList ').html(''); fileList.html(''); if (filesToUpload[0].files.length == 0) { fileList.append('
  • Nessun file selezionato
  • '); } else { for (var i = 0; i < filesToUpload[0].files.length; i++) fileList.append('
  • ' + filesToUpload[0].files[i].name + '
  • '); } } function errorFileList(msg) { var fileList = $(' #fileList ').html(''); fileList.html(''); fileList.append('
  • ' + msg + '
  • '); } // carica l'immagine $("#filesToUpload").on('change', function(event) { var file = event.target.files[0]; if(file.size>=2*1024*1024) { $(this).val(''); errorFileList('ERRORE: GRANDEZZA DEL FILE'); return; } var matchAccepter = $( this ).attr('accept').split(','); var accept_ok = false; for (i=0; i < matchAccepter.length; i++) { if (file.type.match(matchAccepter[i])) accept_ok = true; } if (!accept_ok) { $(this).val(''); errorFileList('ERRORE: FORMATO NON VALIDO'); return; } $( this ).attr('mime', file.type); if ( window.FileReader && window.File && window.FileList && window.Blob ) { var fileReader = new FileReader(); fileReader.onload = function(e) { var filesToUpload = $("#filesToUpload"); var int32View = new Uint8Array(e.target.result); // verify the magic number var magicNumber = new Array(); // https://www.sitepoint.com/web-foundations/mime-types-complete-list/ // https://en.wikipedia.org/wiki/List_of_file_signatures magicNumber['image/png'] = new Array(0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A); magicNumber['image/jpeg'] = new Array(0xFF, 0xD8, 0xFF); magicNumber['image/pjpeg'] = new Array(0xFF, 0xD8, 0xFF); var mimeType = filesToUpload.attr('mime'); filesToUpload.removeAttr('mime'); var magic_number_ok = true; lenght_mn = magicNumber[mimeType].length; if (int32View.length > lenght_mn) { for (i=0; i < lenght_mn; i++) { if (int32View[i] != magicNumber[mimeType][i]) magic_number_ok = false; } } else magic_number_ok = false; if (magic_number_ok) { updateFileList(); } else { filesToUpload.val(''); errorFileList('ERRORE: FORMATO NON VALIDO'); } }; fileReader.readAsArrayBuffer(file); } else { updateFileList(); } }); }); $('.input-search').keyup(function() { var value = $(this).val().toLowerCase(); var container = $(this).attr("for"); if (value == "") { $('#'+container+' .panel-search').hide(); $('#'+container+' .panel-search').each(function( index ) { if (index < 12) { $( this ).show(); } else return; }); } else { var li_search = $('#'+container+' .panel-search[data-search*="'+value+'"]'); $('#'+container+' .panel-search').hide(); li_search.each(function( index ) { if (index < 12) { $( this ).show(); } else return; }); } }); // Inizializza l'effetto input function init_form(form_id) { $.each($('input, textarea, select', '#'+form_id),function(e){ if($(this).val().length !== 0) { $(this).addClass('filled'); } else { $(this).removeClass('filled'); } }) } /****************************************************/ /* REGISTRAZIONE */ /****************************************************/ /*FUNZIONI PER REGIONI, PROVINCE E COMUNI*/ function load_zone_province(region_id, province_target, city_funcall, city_target, class1, required){ $.ajax({ type: "POST", url: "https://www.fidasverona.it/admin/includes/ajax/ajax_frontend.php", data: "type=zone_province&class=" + class1 + "&city_funcall=" + city_funcall + "&city_target=" + city_target + "&required=" + required + "&id=" + region_id, success: function(html){ $("#" + province_target).html(html); } }); } function load_zone_city(province_id, city_target, class1, required){ $.ajax({ type: "POST", url: "https://www.fidasverona.it/admin/includes/ajax/ajax_frontend.php", data: "type=zone_city&class=" + class1 + "&required=" + required + "&id=" + province_id, success: function(html){ $("#" + city_target).html(html); } }); } /****************************************************/ /* LOGIN / LOGOUT */ /****************************************************/ $( '#logout' ).click(function() { $.ajax({ type: "POST", url: 'https://www.fidasverona.it/admin/includes/ajax/ajax_frontend.php', data: { type: "logout" }, context: this, dataType: 'text' }) .done(function(data){ location.reload(); }); }); /****************************************************/ /* COMMENTI */ /****************************************************/ /* GESTIONE REPLY COMMENTI */ $( '.a_reply' ).click(function() { parent = parseInt($( this ).attr('parent')); $('#reply_comment input[name="parent"]').val(parent); $('#reply_comment form')[0].reset(); $('#reply_comment .response_positive').hide(); $('#reply_comment form').show(); title = $('#comment_title_'+parent).html(); $('#reply_comment input[name="title"]').val('RE: '+title); $('#reply_comment input[name="rate"]').val(''); $('#reply_comment').find('.star').removeClass('fa-star-chosen').removeClass('fa-star-current').removeClass('fa-star').addClass('fa-star-o'); init_form($('#reply_comment form').attr("id")); $('#reply_comment').modal('show'); }); /* GESTIONE RATE */ function setRateChosen(current) { current.addClass('fa-star-chosen').addClass('fa-star-current').addClass('fa-star').removeClass('fa-star-o'); current.prevAll('.star').addClass("fa-star-chosen").addClass('fa-star').removeClass('fa-star-o'); current.nextAll('.star').addClass('fa-star-o').removeClass('fa-star'); current.parent().prev('#rate').val($current.attr("value")); } $(".box-rate").hover(function(){ $(this).find('.star').removeClass('fa-star-chosen'); }, function(){ $current = $(this).find('.fa-star-current'); setRateChosen($current); /* $current.addClass('fa-star-chosen').addClass('fa-star-current').addClass('fa-star').removeClass('fa-star-o'); $current.prevAll('.star').addClass("fa-star-chosen").addClass('fa-star').removeClass('fa-star-o'); $current.nextAll('.star').addClass('fa-star-o').removeClass('fa-star'); $current.parent().prev('#rate').val($current.attr("value")); */ }); $(".star").hover(function(){ $(this).parent().find('.star').removeClass('fa-star-chosen'); $(this).addClass('fa-star').removeClass('fa-star-o'); $(this).prevAll('.star').addClass('fa-star').removeClass('fa-star-o'); }, function(){ $(this).removeClass('fa-star').addClass('fa-star-o'); $(this).prevAll('.star').removeClass('fa-star').addClass('fa-star-o'); }); $('.star').click(function(e) { $(this).parent().find('.fa-star-current').removeClass('fa-star-current'); $current = $(this); setRateChosen($current); /* $current.addClass('fa-star-chosen').addClass('fa-star-current').addClass('fa-star').removeClass('fa-star-o'); $current.prevAll('.star').addClass("fa-star-chosen").addClass('fa-star').removeClass('fa-star-o'); $current.nextAll('.star').addClass('fa-star-o').removeClass('fa-star'); $current.parent().prev('#rate').val($current.attr("value")); */ }); /****************************************************/ /* GESTIONE AJAX DEI FORM */ /* - REGISTRAZIONE */ /* - NEWSLETTER */ /* - LOGIN */ /* - COMMENTI */ /****************************************************/ /* GESTIONE AJAX DEI FORM */ $( '.form_ajax' ).each(function( index ) { $( this ).before(''); init_form(this.id); }); $( '.form_ajax' ).on('submit', function (e) { e.preventDefault(); $('#alert-code-'+this.id).remove(); $('#upload_container_'+this.id).show(); // recupera le classi da nascondere var class_hide = $(this).find( 'input[name=class_hide]' ); var value_class_hide = class_hide.val(); // recupera la classe da applicare in caso di errore var func_error_code = $(this).data('error_code'); // recupera la classe da applicare in caso di successo var func_positive_response = $(this).data('positive_response'); // recupera la classe da applicare in caso di failure var func_fail = $(this).data('fail'); //grab all form data var formData = new FormData($(this)[0]); $.ajax({ type: "POST", url: 'https://www.fidasverona.it/admin/includes/ajax/ajax_frontend.php', content: this, data: formData, // Data sent to server, a set of key/value pairs (i.e. form fields and values) contentType: false, // The content type used when sending data to the server. cache: false, // To unable request pages to be cached processData:false // To send DOMDocument or non processed data file it is set to false }) .done(function(data){ $('#upload_container_'+this.content.id).hide(); datiJSON = JSON.parse(data); // errore if (datiJSON.hasOwnProperty('error_code')) { if (func_error_code === undefined) { $( this.content ).before('

    '+datiJSON.error_code+'

    '); $( "#alert-code-"+this.content.id )[0].scrollIntoView(); } else { var fn = window[func_error_code]; if (typeof fn === "function") fn.apply(null, [this, datiJSON, value_class_hide]); } } // azione non legato a risposta positiva if (datiJSON.hasOwnProperty('action')) { switch (datiJSON.action) { case 'refresh': location.reload(); break; } } // risposta positiva if (datiJSON.hasOwnProperty('positive_response')) { if (func_positive_response === undefined) { // action legata a risposta positiva if (datiJSON.hasOwnProperty('action')) { switch (datiJSON.action) { case 'popup': $('#popup_result .response_positive').html(datiJSON.positive_response); $('#popup_result').modal('show'); $( this.content ).find('.star').removeClass('fa-star-chosen').removeClass('fa-star-current').removeClass('fa-star').addClass('fa-star-o'); $( this.content )[0].reset(); return; } } $( this.content ).after('
    '+datiJSON.positive_response+'
    '); $( this.content ).detach(); if (value_class_hide !== undefined) $('.'+value_class_hide).hide(); } else { var fn = window[func_positive_response]; if (typeof fn === "function") fn.apply(null, [this, datiJSON, value_class_hide]); } } }) .fail(function(data) { if (func_fail === undefined) { $('#upload_container_'+this.content.id).hide(); $( this.content ).before('

    Errore nell\'invio. Riprovare pi� tardi

    '); } else { var fn = window[func_fail]; if (typeof fn === "function") fn.apply(null, [this, data, value_class_hide]); } }); }); function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie.replace(/\+/g, ' ')); var ca = decodedCookie.split(';'); for(var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } $(window).load(function() { var policyCookie = getCookie('policyCookie'); if ((policyCookie == "") || (policyCookie == 0)) { $('#cookie_third').hide(); } });