123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <!DOCTYPE html>
- <!--
- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/
- -->
- <html>
- <head>
- <meta charset="utf-8">
- <title>CSS Test: 'object-fit: cover' on video element, with a WebM video and with various 'object-position' values</title>
- <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
- <link rel="help" href="http://www.w3.org/TR/css3-images/#sizing">
- <link rel="help" href="http://www.w3.org/TR/css3-images/#the-object-fit">
- <link rel="help" href="http://www.w3.org/TR/css3-images/#the-object-position">
- <link rel="match" href="object-fit-cover-webm-001-ref.html">
- <style type="text/css">
- video {
- border: 1px dashed gray;
- padding: 1px;
- object-fit: cover;
- image-rendering: -moz-crisp-edges;
- float: left;
- }
- .bigWide {
- width: 48px;
- height: 32px;
- }
- .bigTall {
- width: 32px;
- height: 48px;
- }
- .small {
- width: 8px;
- height: 8px;
- }
- br { clear: both; }
- .tr { object-position: top right }
- .bl { object-position: bottom left }
- .tl { object-position: top 25% left 25% }
- .br { object-position: bottom 1px right 2px }
- .tc { object-position: top 3px center }
- .cr { object-position: center right 25% }
- </style>
- </head>
- <body>
- <!-- big/wide: -->
- <video src="colors-16x8.webm" class="bigWide tr"></video>
- <video src="colors-16x8.webm" class="bigWide bl"></video>
- <video src="colors-16x8.webm" class="bigWide tl"></video>
- <video src="colors-16x8.webm" class="bigWide br"></video>
- <video src="colors-16x8.webm" class="bigWide tc"></video>
- <video src="colors-16x8.webm" class="bigWide cr"></video>
- <video src="colors-16x8.webm" class="bigWide"></video>
- <br>
- <!-- big/tall: -->
- <video src="colors-16x8.webm" class="bigTall tr"></video>
- <video src="colors-16x8.webm" class="bigTall bl"></video>
- <video src="colors-16x8.webm" class="bigTall tl"></video>
- <video src="colors-16x8.webm" class="bigTall br"></video>
- <video src="colors-16x8.webm" class="bigTall tc"></video>
- <video src="colors-16x8.webm" class="bigTall cr"></video>
- <video src="colors-16x8.webm" class="bigTall"></video>
- <br>
- <!-- small: -->
- <video src="colors-16x8.webm" class="small tr"></video>
- <video src="colors-16x8.webm" class="small bl"></video>
- <video src="colors-16x8.webm" class="small tl"></video>
- <video src="colors-16x8.webm" class="small br"></video>
- <video src="colors-16x8.webm" class="small tc"></video>
- <video src="colors-16x8.webm" class="small cr"></video>
- <video src="colors-16x8.webm" class="small"></video>
- <br>
- </body>
- </html>
|