Last active
January 21, 2022 18:47
-
-
Save aatronco/3af834dec4780998f4c051e36cf2557b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! | |
| * Simple Age Verification (https://github.com/Herudea/age-verification)) | |
| requires <script src="//cdn.jsdelivr.net/jquery.cookie/1.4.1/jquery.cookie.min.js"></script> | |
| */ | |
| var modal_content, | |
| modal_screen; | |
| // Start Working ASAP. | |
| $(document).ready(function() { | |
| av_legality_check(); | |
| }); | |
| av_legality_check = function() { | |
| if ($.cookie('is_legal') == "yes") { | |
| // legal! | |
| // Do nothing? | |
| } else { | |
| av_showmodal(); | |
| // Make sure the prompt stays in the middle. | |
| $(window).on('resize', av_positionPrompt); | |
| } | |
| }; | |
| av_showmodal = function() { | |
| modal_screen = $('<div id="modal_screen"></div>'); | |
| modal_content = $('<div id="modal_content" style="display:none"></div>'); | |
| var modal_content_wrapper = $('<div id="modal_content_wrapper" class="content_wrapper"></div>'); | |
| var modal_regret_wrapper = $('<div id="modal_regret_wrapper" class="content_wrapper" style="display:none;"></div>'); | |
| // Question Content | |
| var content_heading = $('<h2>Bem-vindo!</h2><h2>Por favor confirme su edad.</h2>'); | |
| var content_buttons = $('<nav><ul><li><a href="#nothing" class="av_btn av_go" rel="yes">Tengo más de 18 años</a></li><li><a href="#nothing" class="av_btn av_no" rel="no">No tengo más de 18 Años</a></li></nav>'); | |
| var content_text = $(''); | |
| // Regret Content | |
| var regret_heading = $('<h2>Sentimos muito!</h2>'); | |
| var regret_buttons = $('<nav><small>Me equivoque!</small> <ul><li><a href="#nothing" class="av_btn av_go" rel="yes">Si tengo edad suficiente</a></li></ul></nav>'); | |
| var regret_text = $('<p>Debe confirmar que tiene más de 18 años para ingresar a este sitio.</p>'); | |
| modal_content_wrapper.append(content_heading, content_buttons, content_text); | |
| modal_regret_wrapper.append(regret_heading, regret_buttons, regret_text); | |
| modal_content.append(modal_content_wrapper, modal_regret_wrapper); | |
| // Append the prompt to the end of the document | |
| $('body').append(modal_screen, modal_content); | |
| // Center the box | |
| av_positionPrompt(); | |
| modal_content.find('a.av_btn').on('click', av_setCookie); | |
| }; | |
| av_setCookie = function(e) { | |
| e.preventDefault(); | |
| var is_legal = $(e.currentTarget).attr('rel'); | |
| $.cookie('is_legal', is_legal, { | |
| expires: 30, | |
| path: '/' | |
| }); | |
| if (is_legal == "yes") { | |
| av_closeModal(); | |
| $(window).off('resize'); | |
| } else { | |
| av_showRegret(); | |
| } | |
| }; | |
| av_closeModal = function() { | |
| modal_content.fadeOut(); | |
| modal_screen.fadeOut(); | |
| }; | |
| av_showRegret = function() { | |
| modal_screen.addClass('nope'); | |
| modal_content.find('#modal_content_wrapper').hide(); | |
| modal_content.find('#modal_regret_wrapper').show(); | |
| }; | |
| av_positionPrompt = function() { | |
| var top = ($(window).outerHeight() - $('#modal_content').outerHeight()) / 2; | |
| var left = ($(window).outerWidth() - $('#modal_content').outerWidth()) / 2; | |
| modal_content.css({ | |
| 'top': top, | |
| 'left': left | |
| }); | |
| if (modal_content.is(':hidden') && ($.cookie('is_legal') != "yes")) { | |
| modal_content.fadeIn('slow') | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment