I know you can customize the video controls to make your own buttons/layout, but is there any way I can just make the default controls larger?
相关问题
- How to use Control.FromHandle?
- Countdown to the end of the HTML5 video
- Python function to read video and convert to frame
- Thumbnails from the Vimeo website harder than YouT
- Video Format that Works on Mobile Phones
相关文章
- HTML5 control
- How to create a MediaClip from RenderTargetBitmap
- Safari blocks play() on video despite being called
- Understanding the difference between Collection.is
- Difference between SuspendLayout and BeginUpdate
- Why MPMoviePlayerController fullscreen button icon
- Get size of Bitmap Android [duplicate]
- Skip UIImagePickerController Preview View?
Not in a cross-browser way, but the controls are built with Shadow DOM elements. In Chrome, at least, you can enable Show Shadow DOM in the dev tools settings, inspect the video player controls, and glean the CSS that you'd need to supply to affect these elements (in webkit browsers).
Sorry, not sure offhand what the support is in other browsers for inspecting and styling Shadow DOM stuff.
Here is a sample codepen where you can see some sample styling of the HTML5 video controls: codepen.io/BainjaminLafalize/pen/GiJwn
It's for webkit based browsers only - Chrome, Opera and Safari. For Firefox and Edge/IE - styling is not possible at the moment (August 2017).