$(function(){ function imageForce(){ $('.img-fullscreen').each(function(){ var actualImage = new Image(); console.log($(this)); actualImage.src = $(this).css('background-image').replace(/"/g,"").replace(/url\(|\)$/ig, ""); var target = $(this); actualImage.onload = function() { var width = $(window).width(); var height = $(window).height(); var imgWidth = this.width; var imgHeight = this.height; var imgAR = imgWidth/imgHeight; var vpAR = width/height; if(imgAR <= vpAR){ target.css("background-size", width + "px " + width/imgAR + "px"); } if(imgAR > vpAR){ console.log('2'); target.css("background-size", height*imgAR + "px " + height + "px"); } //end on load } //end for each }); //end imageForce() }; imageForce(); $(window).resize(function(){ imageForce(); }); }); /*******************************************************************/ /* ftrtch dino */ /* [type: JS] [file:article-hero] [113.8331] DESIGN*/ /*******************************************************************/ /* 0.3 P>P */ /* db 164 */