Is there a way I can cut off the corners of my html5 video element using the CSS3 border-radius attribute?
Check out this example. it's not working.
|
Is there a way I can cut off the corners of my html5 video element using the CSS3 border-radius attribute? Check out this example. it's not working.
| ||||
|
feedback
|
|
It works in Firefox as long as you set the appropriate 180px height for the 320px width video (16:9 aspect ratio) - otherwise the curved borders aren't visible because they're outside the frame of the video. There are some outstanding bugs in WebKit to do with it clipping content in concert with | |||
feedback
|
|
remove the width property http://jsfiddle.net/vDPW2/10/ | |||||||
feedback
|
|
This can be done with canvas and JavaScript at least (Introduction how to manipulate video frame data with canvas). You basically draw a new canvas, apply the video frame data there, then clip the rounded corners off. I created this quickly, so didn't check whether the anti-aliasing could have been improved, but at least it does the rounding. Performance wise, you can imagine this isn't really as good as applying CSS or something, but it should work on all canvas supported browsers at least.
Example: http://jsfiddle.net/niklasvh/aFcUh/ (play the top video to view the effects on the bottom canvas one). | |||||||||
feedback
|
|
If all of your videos are the same size, you could use a CSS mask with an SVG file. If your videos are dynamically sized, that makes things more difficult... (edit: the SVG mask seems to automatically scale, so this solution should work) e.g., you can add
to your .rc class and it should work in Chrome. edit: this only seems to work if you remove your inline | |||||||||||
feedback
|
|
Try read this: http://www.gerbenvanerkelens.com/1778/let%E2%80%99s-talk-about-the-html5-video-tag/ And for CSS would be:
| |||
feedback
|