Forum Discussion
DamienDickerson
12 years agoCommunity Member
full screen video button?
I can't see full screen video button on playbar after when I importy a movie? Is any way to resize video on full screen after interactiion? (and came back to small size) ?
allandalgaard
9 years agoCommunity Member
paste this in your story_html5.html for working fullscreen in web-element players
<script type="text/javascript">
(function () {
var attributes = ["allowfullscreen", "webkitallowfullscreen", "mozallowfullscreen", "oallowfullscreen", "msallowfullscreen"];
function forceIframeFullScreenToWork () {
var elements = document.getElementsByTagName("iframe");
for(var i =0; i < elements.length; i++) {
attributes.forEach(function (attribute) {
elements[i].setAttribute(attribute, true);
})
}
}
var interval = setInterval(forceIframeFullScreenToWork, 500);
forceIframeFullScreenToWork();
}());
</script>
Related Content
- 12 months ago
- 10 months ago
- 10 months ago