agungbudiono
09-24-2016, 02:53 AM
Please help me to improve this script
I want to hide mouse cursor for a second, even in mouse move (not only in idle)
I want to use this for my blog with short time visitors pageview like wallpaper blog
<script type="text/javascript">
document.body.style.cursor = 'none';
setTimeout(function (){
document.body.style.cursor = 'unset';
}, 10000); // How long do you want the delay to be (in milliseconds)?
</script>
I want to hide mouse cursor for a second, even in mouse move (not only in idle)
I want to use this for my blog with short time visitors pageview like wallpaper blog
<script type="text/javascript">
document.body.style.cursor = 'none';
setTimeout(function (){
document.body.style.cursor = 'unset';
}, 10000); // How long do you want the delay to be (in milliseconds)?
</script>