<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.11.4/TweenMax.min.js"></script>
<span id="focus" class="active">TAB FOCUS</span> <span id="blur">TAB BLUR</span> <span id="focusW">WINDOW FOCUS</span> <span id="blurW">WINDOW BLUR</span>
<div id="wrapper">
<div id="box">
<div id="spot"></div>
</div>
</div>
<p>To Test:
<ul>
<li>First click inside the Preview panel so the page gains focus ( <strong>very imporatnt</strong> )</li>
<li>Switch between tabs</li>
<li>Give another program focus and come back to the browser</li>
<li>Look at the above state changes.</li>
</ul>
</p>
var $focus = $("#focus"),
$blur = $("#blur"),
$focusW = $("#focusW"),
$blurW = $("#blurW");
// rotate element
var tl = new TimelineMax({paused:true,repeat:-1});
tl.to("#box",1.5,{
css:{
rotation:360
},
ease:Linear.easeNone
});
tl.play(0);
/////////////////////////////////////////
// main visibility API function
// check if current tab is active or not
var vis = (function(){
var stateKey,
eventKey,
keys = {
hidden: "visibilitychange",
webkitHidden: "webkitvisibilitychange",
mozHidden: "mozvisibilitychange",
msHidden: "msvisibilitychange"
};
for (stateKey in keys) {
if (stateKey in document) {
eventKey = keys[stateKey];
break;
}
}
return function(c) {
if (c) document.addEventListener(eventKey, c);
return !document[stateKey];
}
})();
/////////////////////////////////////////
// check if current tab is active or not
vis(function(){
if(vis()){
setTimeout(function(){
// tween resume() code goes here
tl.resume();
// add remove active class
TweenMax.set($focus,{className:'+=active'});
TweenMax.set($blur,{className:'-=active'});
TweenMax.set($focusW,{className:'-=active'});
TweenMax.set($blurW,{className:'-=active'});
},300);
} else {
// tween pause() code goes here
tl.pause();
// add remove active class
TweenMax.set($blur,{className:'+=active'});
TweenMax.set($focus,{className:'-=active'});
TweenMax.set($focusW,{className:'-=active'});
TweenMax.set($blurW,{className:'-=active'});
}
});
/////////////////////////////////////////
// check if browser window has focus
var notIE = (document.documentMode === undefined),
isChromium =...
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.