Skip to content

Instantly share code, notes, and snippets.

View klx-hansspiess's full-sized avatar

Hans Spieß klx-hansspiess

  • KLAX gGmbH
View GitHub Profile
@klx-hansspiess
klx-hansspiess / app.js
Last active March 4, 2020 06:26
make vimeo embeds responsive
// Responsive Vimeo Embed: http://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php
var $allVideos = $("iframe[src^='//player.vimeo.com']");
$allVideos.each(function() {
$(this)
.data('aspectRatio', this.height / this.width)
.removeAttr('height')
.removeAttr('width');
});