mediafront / osmplayer

The Open Standard Media Player is an all-in-one media player for the web. It is an industry changing, open source (MIT) media player that is built to dynamically deliver any type of web media, including HTML5, YouTube, Vimeo, and Flash.
http://www.mediafront.org
MIT License
342 stars 181 forks source link

Full Screen no playbar #43

Open rlneub opened 11 years ago

rlneub commented 11 years ago

I cannot move forward and back, pause or play, when I am in full screen mode.

DArmbrister commented 11 years ago

In the web browser console, look for a div element with the class, "minplayer-default-controls ui-widget-header minplayer-controls-volume-vertical". If it exists, set "display" on it to, "block". It should show up. This isn't really a fix. just checking to see if the osmplayer you have is built right and isn't missing any parts by mistake.

rlneub commented 11 years ago

Ok, how do I find this? I am using html with php. I have this code

and this is the div

' So I am missing something as to how to find minplayer-default-controls ui-widget-header minplayer-controls-volume-vertical
DArmbrister commented 11 years ago

Debug your code in Chrome. Then right click on the page and select, "Inspect element". Go to the, "Console," tab and type: $(".minplayer-default-controls ui-widget-header minplayer-controls-volume-vertical")

This requires jQuery and will give you all the div elements with that class as a result. If you don't have jQuery, add the google hosted jQuery links in the, "head" section of your html. Sorry for any confusion. Hope this helps.

rlneub commented 11 years ago

Thanks. Found it. It is already set to block.

04:04
rlneub commented 11 years ago

div class="minplayer-default-controls ui-widget-header minplayer-controls-volume-vertical" style="display: block;"

rlneub commented 11 years ago

I can not get this in chrome to have the inspect element in fullscreen. The above was found in the non full screen rendition.

rlneub commented 11 years ago

When you first go into fullscreen the bar is there. After a few seconds it fades. Then nothing brings it back.

I am on a laptop under windows 7 with a touchpad not a mouse.

DArmbrister commented 11 years ago

Touchpad as in the computer is touchscreen? or the computer has a trackpad? The control bar should comeback with a on hover handler. However, if the computer is touchscreen, then the on hover handler will never activate.

rlneub commented 11 years ago

Not touchscreen. I have a pad which I use for mouse movements.

I can move my mouse anywhere on the screen and the bar never reappears.