Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Full screen playback error #8

Open
lyn7113 opened this issue Sep 20, 2019 · 2 comments
Open

Full screen playback error #8

lyn7113 opened this issue Sep 20, 2019 · 2 comments

Comments

@lyn7113
Copy link

lyn7113 commented Sep 20, 2019

When playing full-screen, the mouse will not hide, and the time progress bar will not hide, affecting viewing.

@jjbabydarling
Copy link

jjbabydarling commented Jan 25, 2020

I also think this is a problem. I'd like to make a feature request that if the cursor hovers over the video for 3 seconds then the controls and cursor disappear. That would be great.

Apart from that I'm extremely happy with ckin. It was easier to implement and customise than video.js and plyr. Thumbs up from me.

@twobob
Copy link

twobob commented Nov 28, 2020

One could track mouse movement over time giving certain events.

I don't see anyone tracking these issues so probably something like the following pseudo will do it, where one has some function doing a "watch" of the mouses movements and some kind of stateful observation of full-screen state would be needed to initially trigger that watch

// helper to monitor moves it would require activation statefully based on full screen-ness

var mvms = function() {
				clearTimeout(timeout);
				jig();  // Helper to actually change the mouse cursor most likely
				timeout = setTimeout(cleanUpTiming, 3000);  // after 3 seconds we could hide it again
			};
// Eh. make it pure JavaScript over jquery but meh
jQuery(document).on('mousemove', mvms()); /*if we are confirmed as full screen then we should show the cursor if wiggled*/

Something like that

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants