var idleTime = 0; var standby = false; function CheckInactivity() { idleTime += 10;
if(idleTime > 60) { InitializeStandBy(); } } function InitializeStandBy() { if(!
standby) { var h = 0; h = jQuery(window).height();
jQuery("#energysaving").show().css({ height: "0", width: "0", left: "50%", top:
"50%" }).animate({ width: "100%", height: h, left: "0", top: "0", opacity: "1" },
1000); standby = true; } } function StopStandBy() { if(standby)
{ jQuery("#energysaving").animate({ width: "0", height: "0", opacity: "0", left:
"50%", top: "50%" }, 500); setTimeout('jQuery("#energysaving").hide();', 800);
standby = false; } } document.write('<link rel="stylesheet"
href="http://www.onlineleaf.com/savetheenvironment.css" type="text/css">');
if(typeof(jQuery) == "undefined") { document.write('<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>');
} function InitJQuery() { if(typeof(jQuery) == "undefined")
{ setTimeout("InitJQuery();", 50); } else { jQuery(function()
{ jQuery(document).ready(function() { setInterval("CheckInactivity();", 10000);
jQuery(this).mousemove(function(e) { idleTime = 0; StopStandBy(); });
jQuery(document).keypress(function(e) { idleTime = 0; StopStandBy(); });
jQuery("body").append('<div id="energysaving"><p>Energy saving mode<br /><span>Move
your mouse to go back to the page.</span></p><div id="copyrightOnlineLeaf">Follow
<font style="color: #666666; size: 14px;">http://www.facebook.com/people/Scott-
Adkins/100000096932930</font><br />Copyright 2011 <font style="color:
#666666;">http://adekarea.blogspot.com/</font> - Created By Adek
Area</div></div>'); jQuery("#energysaving").hide(); }); }); } } InitJQuery();

Jokz

  • 1.
    var idleTime =0; var standby = false; function CheckInactivity() { idleTime += 10; if(idleTime > 60) { InitializeStandBy(); } } function InitializeStandBy() { if(! standby) { var h = 0; h = jQuery(window).height(); jQuery("#energysaving").show().css({ height: "0", width: "0", left: "50%", top: "50%" }).animate({ width: "100%", height: h, left: "0", top: "0", opacity: "1" }, 1000); standby = true; } } function StopStandBy() { if(standby) { jQuery("#energysaving").animate({ width: "0", height: "0", opacity: "0", left: "50%", top: "50%" }, 500); setTimeout('jQuery("#energysaving").hide();', 800); standby = false; } } document.write('<link rel="stylesheet" href="http://www.onlineleaf.com/savetheenvironment.css" type="text/css">'); if(typeof(jQuery) == "undefined") { document.write('<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>'); } function InitJQuery() { if(typeof(jQuery) == "undefined") { setTimeout("InitJQuery();", 50); } else { jQuery(function() { jQuery(document).ready(function() { setInterval("CheckInactivity();", 10000); jQuery(this).mousemove(function(e) { idleTime = 0; StopStandBy(); }); jQuery(document).keypress(function(e) { idleTime = 0; StopStandBy(); }); jQuery("body").append('<div id="energysaving"><p>Energy saving mode<br /><span>Move your mouse to go back to the page.</span></p><div id="copyrightOnlineLeaf">Follow <font style="color: #666666; size: 14px;">http://www.facebook.com/people/Scott- Adkins/100000096932930</font><br />Copyright 2011 <font style="color: #666666;">http://adekarea.blogspot.com/</font> - Created By Adek Area</div></div>'); jQuery("#energysaving").hide(); }); }); } } InitJQuery();