 
					潇潇雨雨
					1234567891011121314151617181920212223242526272829303132<html><head>    <style>        html,body{width:100%;height:100%;margin:0px auto;padding:0px auto;}        .bgdiv{width:100%;height:100%;position:absolute;z-index:-999;}        .bgdiv img{width:100%;height:100%;border:0px;}    </style>    <script src="jquery-1.9.1.min.js"></script>    <script>    $(document).ready(function(){        $("#imgbox img").fadeOut(0).eq(0).fadeIn(0);        var i = 0;        setInterval(function(){            if($("#imgbox img").length > (i+1)){                $("#imgbox img").eq(i).fadeOut(0).next("img").fadeIn(1000);                i++;            }            else{                $("#imgbox img").eq(i).fadeOut(0).siblings("img").eq(0).fadeIn(1000);                i = 0;            }        },2000);    });    </script></head><body>    <div id="imgbox" class="bgdiv">        <img src="11.jpg" /><img src="22.jpg" />    </div>    <div>网页其他内21容网页其他3内23网页其他内1容312网页其他内容11</div></body></html>