gpt4 book ai didi

css - 跨浏览器合规性 - Bing Wallpaper Web Scraping

转载 作者:行者123 更新时间:2023-11-28 10:29:23 25 4
gpt4 key购买 nike

我正在尝试显示 Bing 主页 here
它是一个网络抓取工具,可以找到图像 URL 并设置它作为背景图像。
但与往常一样,Internet Explorer 始终存在问题。但我希望 IE11 能够很好地处理它。然而,它没有。我的目标是在放大和缩小时,背景图像不应该调整大小。
在 Google Chrome 和 Mozilla Firefox 上一切正常。
我想试试在所有浏览器上看起来都一样。我应该/可以做什么?

这是我的代码:

echo '<!DOCTYPE html>';
echo '<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>';
echo '<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />';
echo "<title>Bing Wallpaper Scraper</title>";
$style="body {
background-image: url('$v');
-moz-background-size: cover;
-o-background-size: cover;
-webkit-background-size: cover;
background-size: cover;
background-position: top center !important;
background-repeat: no-repeat !important;
background-attachment: fixed;
}";
echo "<style>$style</style>";
echo "</head>";
echo "<body>";//background='$v'
echo "<div style='text-align:center;'>";
echo "<h1 style='color:white'> I did it! </h1>";
echo "<h2 style='color:white'> You too can! </h2>";
echo "</div>";
echo "</body></html>";

变量 $v 具有来自网络抓取器的图像 URL。正如它在 this xml 中可用一样文档或 this json输出。

最佳答案

删除 background-attachment 属性,你会得到你想要的。

关于css - 跨浏览器合规性 - Bing Wallpaper Web Scraping,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23594840/

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