Forum Discussion
jayantgehlot
11 years agoCommunity Member
Full Screen video option in Articulate Storyline
I'm precisely stating my query-
Video controls in Articulate storyline are "seekbar" and "volume control" option. NO FULL SCREEN control option.
Can any one figure out a way to full screen video...
MichaelAnder569
7 years agoCommunity Member
You can make videos go full screen if you embed another video player such as VideoJS player. You might be able to create a button to make the browser enter full screen mode, Follow the discussion here. https://community.articulate.com/discussions/articulate-storyline/course-in-full-screen?page=2
Specifically my post with this code:
var fullStorylinePlayer = document.querySelectorAll("html");
if (fullStorylinePlayer[0].requestFullscreen) {
fullStorylinePlayer[0].requestFullscreen();
}else if (fullStorylinePlayer[0].mozRequestFullScreen) {
fullStorylinePlayer[0].mozRequestFullScreen(); // Firefox
}else if (fullStorylinePlayer[0].webkitRequestFullscreen) {
fullStorylinePlayer[0].webkitRequestFullscreen(); // Chrome and Safari
}else if (fullStorylinePlayer[0].msRequestFullscreen) {
fullStorylinePlayer[0].msRequestFullscreen(); // IE
}
Let me know if you need any help with this.
Related Content
- 8 months ago
- 11 months ago