The xHTML web application is displayed on the self-service kiosk using Chromium in full-screen kiosk mode. Since the kiosk display is for visual feedback only, there is no mouse / touch screen.
It's very easy to hide the mouse cursor with CSS so far:
This approach has one major problem - the user SHOULD move the mouse at least a few pixels so that the pointer disappears. As I mentioned above, this kiosk has no input methods, and as a result, after loading the user interface, the cursor is still displayed right in the middle of the screen for the remaining time.
I know that you can simply set the transparent cursor in the OS settings, but, unfortunately, few of these kiosks are already sent to customers, so we can remotely change the displayed HTML / CSS / JS content, rather than access and configure the underlying OS.
I also googled around, and it seems that there is no way to move the mouse through jQuery. Can anyone suggest how to deal with this problem?
pointers mouse chromium kiosk
Artanis
source share