Forum Discussion
BuminHuang
7 years agoCommunity Member
Articulate Rise - Disable Video Seek Bar
I intend to upload videos (not embed) in courses created by Rise, is there any where to disable the seek bar so that users cannot fast-forward/ drag the progress bar. The intention is to ensure that...
WalterBosello
7 years agoCommunity Member
For the time being, I've hidden the whole control bar bar by adding this CSS in the index.html
.vjs-control-bar{
display: none !important;
}
eventually the control strip can still be shown but you can hide just the scrub bar with this
.vjs-slider-horizontal{
display: none !important;
}
ofcourse this is not a real solution (never nice fiddling with published files), but it helps for the time being
- Edit: I tested this on chrome and Android and it works, while on iOS controls seem to be natively replaced (thanks Apple...)