I want to position some video player controls on the bottom of the player when page loads. When a window resize event occurs, the video player controls should move to the top. When the window is restored to the original size again, the controls should move to the bottom. I'm using mediaelementjs videoplayer and following is the code which I added to move the controls to the top. Once the window is restored to the original size, I cant get the controls to the bottom. Is there a jQuery or javascript solution that can be used to identify the window has been restored to the original size?
// adjust controls whenever window sizes (used to be in fullscreen only)
$(window).resize(function() {
// don't resize for fullscreen mode
if ( !(t.isFullScreen || (mejs.MediaFeatures.hasTrueNativeFullScreen && document.webkitIsFullScreen)) ) {
alert("inside if");
t.setPlayerSize(t.width, t.height);
}
//This line of code moves the player controls to the top when window resize occurs
t.container.find('.mejs-controls').css('top', '0px');
// always adjust controls
t.setControlsSize();
});