Video.js Classes to Hide Video While Loading -
Video.js Classes to Hide Video While Loading -
i'm trying hide video while it's loading (e.g. black window loading spinner). class i've found sort of made sense .vjs-has-started 1 loading screen still shows next css. didn't see in javascript api meets need (sorry if missed something).
.video-js { display: none; visibility: hidden; } .video-js.vjs-has-started { display: block; visibility: visible; }
i've tried adding .vjs-playing mix both in place of in conjunction .vjs-has-started. thoughts on getting work or reply why won't help. if need can work on adding video.js if it's not there first wanted definitive reply on current state of video.js functionality.
you utilize vjs-waiting
.vjs-waiting {visibility: hidden;}
html5-video video.js
Comments
Post a Comment