Skip to content

Instantly share code, notes, and snippets.

@jimjeffers
Created September 15, 2011 13:24
Breaking the HTML5 Video Aspect Ratio
# Just an example.
# @video is a direct reference to a '<video>' element.
# $() is assuming jQuery is being used in this example.
@video.addEventListener("loadedmetadata", (event) =>
actualRatio = @video.videoWidth/@video.videoHeight
targetRatio = $(@video).width()/$(@video).height()
adjustmentRatio = targetRatio/actualRatio
$(@video).css("-webkit-transform","scaleX(#{adjustmentRatio})")
)
@MikeBiggerstaff
Copy link

Dude you are awesome saved me a bunch of time.

@ezmiller
Copy link

What do you mean by "direct reference"? I'd assumed that I'd just need to replace @video with whatever I'd use to reference the element, say ( . v i d e o e l e m ) , i n m y p r o j e c t . B u t w h a t t h r o u g h m e o f f i s t h e d i f f e r e n c e b e t w e e n @ v i d e o . v i d e o W i d t h a n d (@video).width() in your code. What is the difference betweeen @video and $(@video)?

@cshanejennings
Copy link

I assume he means $('.videoelem').get(0) if you are using jQuery because he's referring to the dom element itself, not the jQuery object. or...

$('.videoelem').get(0).addEventListener... to put it in context

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment