automatically hide the mouse pointer after 5s of inactivity (#1837)

This commit is contained in:
Hakim El Hattab
2018-10-08 09:58:06 +02:00
parent 5890f602b3
commit 7b707696b4
2 changed files with 72 additions and 0 deletions

View File

@ -326,6 +326,12 @@ Reveal.initialize({
// Enable slide navigation via mouse wheel
mouseWheel: false,
// Hide cursor if inactive
hideInactiveCursor: true,
// Time before the cursor is hidden (in ms)
hideCursorTime: 5000,
// Hides the address bar on mobile devices
hideAddressBar: true,