Hide on inactivity

Developer
Size
2,082 Kb
Views
52,624

How do I make an hide on inactivity?

What is a hide on inactivity? How do you make a hide on inactivity? This script and codes were developed by SNÖGRAFX on 26 August 2022, Friday.

Hide on inactivity Previews

Hide on inactivity - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Hide on inactivity</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div id='thing'></div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Hide on inactivity - Script Codes CSS Codes

body { background: maroon;
}
#thing { background: orange; padding: 3em; margin: 3em; height: 3em; width: 3em;
}

Hide on inactivity - Script Codes JS Codes

var el = '#thing';
var interval = 1;
setInterval(function(){ if(interval == 5){ $(el).hide(); interval = 1; } interval = interval+1; console.log(interval);
},800);
$(document).bind('mousemove keypress', function() { $(el).show(); interval = 1;
});
Hide on inactivity - Script Codes
Hide on inactivity - Script Codes
Home Page Home
Developer SNÖGRAFX
Username snografx
Uploaded August 26, 2022
Rating 3
Size 2,082 Kb
Views 52,624
Do you need developer help for Hide on inactivity?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

SNÖGRAFX (snografx) Script Codes
Create amazing blog posts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!