-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to hide the big play button at the beginig of load the player ? #86
Comments
Hi, I'm using the lightbox with vimeo and don't know if its gonna help you but what I did, was a function to locate the css and overwrite it with none. I made an array for all the videos on my site. It's a little messy workaround.
|
Hello , I tried your way but it is not work at all the css classes not their in the ready state , following is my code |
Just add this to your styles: .vjs-afterglow-skin .vjs-big-play-button:before {
content: "" !important;
} Make sure it is placed behind afterglow in your html markup. |
hello , i tried this but it is not working , the button always appears at the beginig can you post me code sample for the orders of the code ? |
Same with me, still displays on load then hides |
Hello Again , looks like i will be here for too long time :D I need to hide the big play button which load at the beginig of the player i used the following code
.vjs-afterglow-skin .vjs-big-play-button {
display: none !important;
}
but it is not working any idea ?
thanks Again !
The text was updated successfully, but these errors were encountered: