
stephen
By: a guest on
Dec 29th, 2009 | syntax:
JavaScript | size: 0.40 KB | hits: 94 | expires: Never
<script>
$(document).ready(function(){
var fadeout = null;
$("html").mousemove(function() {
$("div.fadeobject").stop().fadeIn("slow");
if (fadeout != null) {
clearTimeout(fadeout);
}
fadeout = setTimeout(3000, hide_playerlist);
});
function hide_playlist() {
$("div.fadeobject").stop().fadeOut("slow");
}
});
</script>