4

如何设置背景图像以适合浏览器窗口的确切大小。我熟悉 JavaScript/HTML/CSS/JQuery,所以任何语言都适合我。

4

4 回答 4

2

感谢@Nelson 的评论,我在这里找到了答案:http: //css-tricks.com/perfect-full-page-background-image/

于 2012-10-12T18:49:01.737 回答
0

HTML 和 CSS:

<html>
<head>
<title>bg</title>
<style>
.bg {
    background: url(yourimage);
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}
</style>
</head>

<body>
<div class="bg"></div>
</body>
</html>
于 2012-10-12T18:33:20.177 回答
0

我以前为此使用过 Backstretch jQuery 插件。

http://srobbin.com/jquery-plugins/backstretch/

于 2012-10-12T18:40:18.710 回答
0

试试这个:

<img src="images/BG.jpg" 

style="width:100%;height:100%;position:absolute;top:0;left:0;z-index:-5000;">

http://thewebthought.blogspot.com/2010/10/css-making-background-image-fit-any.html

于 2014-09-25T08:51:12.160 回答