大小背景图像适合浏览器窗口JavaScript / HTML / CSS / JQuery

时间:2012-10-12 18:30:19

标签: javascript jquery html css

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

4 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分: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>

答案 2 :(得分:0)

我之前使用过Backstretch jQuery插件。

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

答案 3 :(得分: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