背景圖片拉伸效果(轉)

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <style type="text/css">
        body {
            padding: 0;
            margin: 0;
            overflow-x: hidden;
            background: url(ss.jpg) center no-repeat;
            background-size: cover;
        }
    </style>
</head>
<body>
    <script src="Scripts/jquery-1.8.2.js"></script>
    <script type="text/javascript">
        $(function () {
            function resizeBody() {
                $("body").height($(window).height() - 2).width($(window).width() - 2);
            }
            resizeBody();

            $(window).resize(function () {
                resizeBody();
            });
        });
    </script>
</body>
</html>

發佈了296 篇原創文章 · 獲贊 54 · 訪問量 90萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章