File: /home/httpd/vhosts/rajlaw.com.tw/httpdocs/wp-content/themes/pool-services-lite/assets/js/custom.js
function pool_services_lite_menu_open_nav() {
window.pool_services_lite_responsiveMenu=true;
jQuery(".sidenav").addClass('show');
}
function pool_services_lite_menu_close_nav() {
window.pool_services_lite_responsiveMenu=false;
jQuery(".sidenav").removeClass('show');
}
jQuery(function($){
"use strict";
jQuery('.main-menu > ul').superfish({
delay: 500,
animation: {opacity:'show',height:'show'},
speed: 'fast'
});
});
jQuery(document).ready(function () {
window.pool_services_lite_currentfocus=null;
pool_services_lite_checkfocusdElement();
var pool_services_lite_body = document.querySelector('body');
pool_services_lite_body.addEventListener('keyup', pool_services_lite_check_tab_press);
var pool_services_lite_gotoHome = false;
var pool_services_lite_gotoClose = false;
window.pool_services_lite_responsiveMenu=false;
function pool_services_lite_checkfocusdElement(){
if(window.pool_services_lite_currentfocus=document.activeElement.className){
window.pool_services_lite_currentfocus=document.activeElement.className;
}
}
function pool_services_lite_check_tab_press(e) {
"use strict";
// pick passed event or global event object if passed one is empty
e = e || event;
var activeElement;
if(window.innerWidth < 999){
if (e.keyCode == 9) {
if(window.pool_services_lite_responsiveMenu){
if (!e.shiftKey) {
if(pool_services_lite_gotoHome) {
jQuery( ".main-menu ul:first li:first a:first-child" ).focus();
}
}
if (jQuery("a.closebtn.mobile-menu").is(":focus")) {
pool_services_lite_gotoHome = true;
} else {
pool_services_lite_gotoHome = false;
}
}else{
if(window.pool_services_lite_currentfocus=="responsivetoggle"){
jQuery( "" ).focus();
}}}
}
if (e.shiftKey && e.keyCode == 9) {
if(window.innerWidth < 999){
if(window.pool_services_lite_currentfocus=="header-search"){
jQuery(".responsivetoggle").focus();
}else{
if(window.pool_services_lite_responsiveMenu){
if(pool_services_lite_gotoClose){
jQuery("a.closebtn.mobile-menu").focus();
}
if (jQuery( ".main-menu ul:first li:first a:first-child" ).is(":focus")) {
pool_services_lite_gotoClose = true;
} else {
pool_services_lite_gotoClose = false;
}
}else{
if(window.pool_services_lite_responsiveMenu){
}}}}
}
pool_services_lite_checkfocusdElement();
}
});
(function( $ ) {
jQuery('document').ready(function($){
setTimeout(function () {
jQuery("#preloader").fadeOut("slow");
},1000);
});
$(window).scroll(function(){
var sticky = $('.header-sticky'),
scroll = $(window).scrollTop();
if (scroll >= 100) sticky.addClass('header-fixed');
else sticky.removeClass('header-fixed');
});
$(document).ready(function () {
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
$('.scrollup i').fadeIn();
} else {
$('.scrollup i').fadeOut();
}
});
$('.scrollup i').click(function () {
$("html, body").animate({
scrollTop: 0
}, 600);
return false;
});
});
})( jQuery );
jQuery(document).ready(function () {
function pool_services_lite_search_loop_focus(element) {
var pool_services_lite_focus = element.find('select, input, textarea, button, a[href]');
var pool_services_lite_firstFocus = pool_services_lite_focus[0];
var pool_services_lite_lastFocus = pool_services_lite_focus[pool_services_lite_focus.length - 1];
var KEYCODE_TAB = 9;
element.on('keydown', function pool_services_lite_search_loop_focus(e) {
var isTabPressed = (e.key === 'Tab' || e.keyCode === KEYCODE_TAB);
if (!isTabPressed) {
return;
}
if ( e.shiftKey ) /* shift + tab */ {
if (document.activeElement === pool_services_lite_firstFocus) {
pool_services_lite_lastFocus.focus();
e.preventDefault();
}
} else /* tab */ {
if (document.activeElement === pool_services_lite_lastFocus) {
pool_services_lite_firstFocus.focus();
e.preventDefault();
}
}
});
}
jQuery('.search-box span a').click(function(){
jQuery(".serach_outer").slideDown(1000);
pool_services_lite_search_loop_focus(jQuery('.serach_outer'));
});
jQuery('.closepop a').click(function(){
jQuery(".serach_outer").slideUp(1000);
});
});