This file contains 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
var video = $('#video'); | |
var resizeVideo = function() { | |
var w = $("body").prop("clientWidth"); | |
var h = window.innerHeight; | |
var ratio = 0.5625; // 720x1280 or 1080x1920 | |
if (h/w > ratio) { | |
var width = ((h/720) / (w/1280)) * 100; | |
video.css('width', width + '%'); | |
video.css('height', '100vh'); | |
} else { |
This file contains 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
<a href="https://codepen.io/sn8w/pen/cIeyn">Test 1</a> | |
<br> | |
<br> | |
<a href="http://kottenator.github.io/jquery-circle-progress/">Test 2</a> | |
<br> | |
<br> | |
<a href="https://jsfiddle.net/kimmobrunfeldt/72tkyn40/">Test 3</a> | |
<br> | |
<br> |