我的功能应该等到加载背景图像,然后将图像的比例添加到它的容器中并淡入背景图像容器。它似乎在 Chrome 中工作,但在 Internet Explorer 8 和 9 中失败,并不总是在 10 中工作. 在 ie8 中它似乎不理解 jquery on('load') 事件。在即 9 和 10 中,它并不总是能找到背景图像的宽度。如何让它在 ie8+ 和其他主流浏览器中运行?
js:
$('.item').each(function(index) {
var thisItem = $(this);
var image_url = thisItem.find('.img').css('background-image');
var img = new Image();
img.src = image_url.replace(/(^url\()|(\)$|[\"\'])/ig, '');
if (image_url){
//initialize only when background img is loaded
var $img = $('<img>').attr('src', img.src).on('load', function(){
//don't allow img to be larger than it is
if(img.width < thisItem.width()){thisItem.css({'max-width':img.width+'px'});}
var ratio = img.height/img.width;
thisItem.find('.item_ratio').css({'padding-bottom':ratio*100+'%'});
thisItem.find('.img').fadeIn(800);
});
}
});
html:
<div class="item">
<div class="img" style="background-image:url('some_url'); width: 100%; background-size: cover;"></div>
<div class="item_ratio"></div>
<!-- Some other not important html ->
</div>