Created
September 23, 2017 20:44
-
-
Save davvit/852b431d8e4d1ee1c6f51f234248f759 to your computer and use it in GitHub Desktop.
HTML5 video scaling example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<style> | |
video { | |
-webkit-transform: scaleX(2); | |
-moz-transform: scaleX(2); | |
} | |
</style> | |
<video src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.ogv"></video> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment