cl01/wp-content/themes/CorePress/static/js/tools.js
2025-02-24 12:39:24 +08:00

1 line
2.3 KiB
JavaScript
Executable File

function getQueryVariable(e){var t=window.location.search.substring(1);var r=t.split("&");for(var i=0;i<r.length;i++){var n=r[i].split("=");if(n[0]==e){return n[1]}}return false}jQuery(document).ready(function(){window.clearIntervalid=setInterval(inithtmlload,1e3)});function inithtmlload(){if(jQuery(window).width()<500){return}if(tools.index==true||tools.page==true||tools.post==true){if(jQuery(".theme-copyright>a").text().indexOf("CorePress")==-1||jQuery(".theme-copyright").css("visibility")!="visible"||jQuery(".theme-copyright").css("display")=="none"||jQuery(".theme-copyright>a").css("visibility")!="visible"||jQuery(".theme-copyright>a").css("display")=="none"){jQuery("html").remove();clearInterval(window.clearIntervalid)}}}function htmlEncodeByRegExp(e){return jQuery("<div/>").text(e).html()}function htmlDecodeByRegExp(e){var t=jQuery("<div/>").html(e).text()}function isElementInViewport(e){var t=e.getBoundingClientRect();return t.top>=0&&t.left>=0&&t.bottom<=(window.innerHeight||document.documentElement.clientHeight)&&t.right<=(window.innerWidth||document.documentElement.clientWidth)}function replaceTag(e){return e.replace("&amp;","")}function addarelt(e,t){var r='<i class="fas fa-info-circle" style="color: #515a6e"></i>';if(t=="succ"){r='<i class="fas fa-check-circle" style="color:#19be6b;"></i>'}else if(t=="erro"){r='<i class="fas fa-times-circle" style="color:#ed4014;"></i>'}var i="";jQuery("body").append('<div class="corepress-alert"><div class="corepress-alert-main">'+r+e+"</div></div>");setTimeout(function(){jQuery(".corepress-alert-main").addClass("corepress-alert-main-show")},20);setTimeout(function(){jQuery(".corepress-alert-main:first").removeClass("corepress-alert-main-show")},3e3);setTimeout(function(){jQuery(".corepress-alert:first").remove()},3500)}function JScopyText(e){copynotmsg=1;jQuery("body").append('<div id="tem-copy" style="visibility: hidden"></div>');var t=new ClipboardJS("#tem-copy",{text:function(){return e}});jQuery("#tem-copy").trigger("click");t.destroy();jQuery("#tem-copy").remove()}function isChinese(e){var t=/.*[\u4e00-\u9fa5]+.*$/;if(t.test(e))return true;return false}function haveNumandLetter(e){var t=/[0-9]/;var r=/[a-z]/i;if(t.test(e)&&r.test(e))return true;return false}function isEmail(e){var t=/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/;if(t.test(e)!=true){return false}else{return true}}