200 OK is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.
The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.
GET / HTTP/1.1 Host: s05.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html> <html lang="zh-CN"> <meta charset='utf-8' /> <head> <!-- 最新的 Bootstrap 核心 JavaScript 文件 --> <script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> <script src="http://g.tbcdn.cn/mtb/lib-flexible/0.3.4/??flexible_css.js,flexible.js"></script> <script type="text/javascript" src="http://www.webxgame.com/js/jquery.min.js"></script> <link rel="stylesheet" href="swiper.min.css"> <style type="text/css"> .container-fluid{margin:0;padding:0;} img { display: block; width: 100%; margin: 0 auto; } </style> <style> .top_img{width:100%; height:5.5rem; margin:0 auto;/* margin-bottom:1.9em;*/ border-bottom:1px solid #e3e3e3; } .top_img img{width:100%; height:5.5rem;border-bottom:0.3rem solid #FFF; float:left; position:absolute; } .swiper-container { width: 100%; height: 100%; } .swiper-slide { text-align: center; font-size: 18px; background: #fff; /* Center slide text vertically */ display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; } .grad1 { /*height: 3rem;*/ background: -webkit-linear-gradient(left, yellow , red); /* Safari 5.1 - 6.0 */ background: -o-linear-gradient(right, yellow, red); /* Opera 11.1 - 12.0 */ background: -moz-linear-gradient(right, yellow, red); /* Firefox 3.6 - 15 */ background: linear-gradient(to right, yellow , red); /* 标准的语法(必须放在最后) */ } </style> </head> <body style="background: #f0f0f0; width:100%;"> <div class="container-fluid"> <img src="images/s5_01.jpg" class="img-responsive" alt="banner"> <img src="images/s5_02_1.jpg" class="img-responsive" alt="banner"> <!--<div name="a1" class="top_img" id="top_img">--> <!--<div class="swiper-container">--> <!--<div class="swiper-wrapper" id="div">--> <!--<div class="swiper-slide" id="d1" style="background:url('images/banner1.jpg') no-repeat; background-size:100% 5.5rem;" onClick="javascript:window.location.href='#';"></div>--> <!--<div class="swiper-slide" id="d2" style="background:url('images/banner2.jpg') no-repeat; background-size:100% 5.5rem;" onClick="javascript:window.location.href='#';"></div>--> <!--<div class="swiper-slide" id="d3" style="background:url('images/banner3.jpg') no-repeat; background-size:100% 5.5rem;" onClick="javascript:window.location.href='#';"></div>--> <!--<div class="swiper-slide" id="d4" style="background:url('images/banner4.jpg') no-repeat; background-size:100% 5.5rem;" onClick="javascript:window.location.href='#';"></div>--> <!--</div>--> <!--<div class="swiper-pagination"></div>--> <!--</div>--> <!--</div>--> <img src="images/s5_03.jpg" class="img-responsive" alt="banner"> <img src="images/s5_04.jpg" class="img-responsive" alt="banner"> <img src="images/s5_05.jpg" class="img-responsive" alt="banner"> <img src="images/s5_06.jpg" class="img-responsive" alt="banner"> <div style="width: 100%; float: left; text-align: center; background: rgb(69,69,69); color: #fff; padding: 50px 0;"> <p>文网文[2011]0402-134号 |<a href="http://beian.miit.gov.cn" target="_blank"> 京ICP证:110113号</a>|<a href="https://beian.miit.gov.cn" target="_blank">京ICP备11003178号-52</a> |京公网安备: 110105012680</p> <p>2022 © 2019 - s05.com All Rights Reserved. 挚爱互动(北京)网络科技有限公司 版权所有</p> </div> </div> <script src="swiper/swiper.min.js"></script> <!-- Initialize Swiper --> <script> var swiper = new Swiper('.swiper-container', { autoplay: 4000,//可选选项,自动滑动 loop : true, pagination: '.swiper-pagination', paginationClickable: true }); swiper if(window.screen.width>750 && window.screen.width<=1000) { for(var i=0;i<document.getElementById("div").getElementsByTagName("div").length;i++) { document.getElementById("div").getElementsByTagName("div")[i].style.backgroundSize="100% 400px" } document.getElementById("top_img").style.height="400px" } if(window.screen.width>1000 && window.screen.width<=1500) { for(var i=0;i<document.getElementById("div").getElementsByTagName("div").length;i++) { document.getElementById("div").getElementsByTagName("div")[i].style.backgroundSize="100% 500px" } document.getElementById("top_img").style.height="500px" } if(window.screen.width>1500) { for(var i=0;i<document.getElementById("div").getElementsByTagName("div").length;i++) { document.getElementById("div").getElementsByTagName("div")[i].style.backgroundSize="100% 600px" } document.getElementById("top_img").style.height="600px" } </script> </body> </html>