gpt4 book ai didi

javascript - IE8 背景大小不工作

转载 作者:行者123 更新时间:2023-11-28 08:24:56 25 4
gpt4 key购买 nike

我试图填充我的图像适合 DIV 的大小。我已经发现“背景大小:包含”不适用于 Internet Explorer 8。

我的特定代码是否有可能的解决方法。

    .thumb {
/* Select a maximum height and width to allot for each thumbnail. Set margin size here as well. */
height: 125px;
width: 135px;
/* Do not edit these properties. */
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}

在我的javascript中:

            $('.thumb:' + place).css("background-image", 'url(' + entry.thumbnailURL + ')');
$('.thumb:' + place).css("filter", 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=' + entry.thumbnailURL + ',sizingMethod='scale')');
$('.thumb:' + place).css("-ms-filter", 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=' + entry.thumbnailURL + ',sizingMethod='scale')');

最佳答案

由于这两位,您得到了一个意外的标识符:

 ',sizingMethod='scale')');

你必须把它改成

',sizingMethod=\'scale\')');

',sizingMethod="scale")');

关于javascript - IE8 背景大小不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28567073/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com