Server IP : 162.214.80.37 / Your IP : 216.73.216.83 Web Server : Apache System : Linux sh013.webhostingservices.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : imyrqtmy ( 2189) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/imyrqtmy/public_html/skyispatudyog/style-switcher/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
/* ****************************** * * StyleSwitcher Script * * Author: Pixel Industry * ******************************* */ jQuery(document).ready(function($){ var relativeDir = 'css/'; /* *************************************** * Reading Cookies for stored values *******************************************/ (function(){ if(readCookie("ssTruckingStyle") !== null){ var styleVal = readCookie("ssTruckingStyle"); changeStyle(styleVal); } })(); /* *************************************** * SlideIn and SlideOut animation on click *******************************************/ $('#styles-button').on('click', function(e){ e.preventDefault(); var switcherWidth = $('#style-switcher').width(); if($('#style-switcher').hasClass('opened')){ $('#style-switcher').animate({ left: -switcherWidth }, 700, function(){ $(this).removeClass('opened'); }); }else{ $('#style-switcher').animate({ left: 0 }, 700, function(){ $(this).addClass('opened'); }); } }); /* ****************** * Style Changing *********************/ $('.styles-list li').on('click', function(e){ e.preventDefault(); var styleVal = $(this).attr('class'); changeStyle(styleVal); createCookie("ssTruckingStyle", styleVal, 7); }); function changeStyle(styleVal){ $('link[title="activestyle"]').remove(); var stylesheet = '<link rel="stylesheet" href="' + relativeDir + styleVal + '.css" type="text/css" />'; $('head').append(stylesheet); } function createCookie(name,value,days) { if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); } else var expires = ""; document.cookie = name+"="+value+expires+"; path=/"; } function readCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for(var i=0;i < ca.length;i++) { var c = ca[i]; while (c.charAt(0)===' ') c = c.substring(1,c.length); if (c.indexOf(nameEQ) === 0) return c.substring(nameEQ.length,c.length); } return null; } function eraseCookie(name) { createCookie(name,"",-1); } });