12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="renderer" content="webkit" />
- <title>健康之路</title>
- <link rel="stylesheet" href="cross/css/cross.css" type="text/css" />
- <link rel="stylesheet" href="iconfont/iconfont.css" type="text/css" />
- <link rel="stylesheet" href="css/index.css" type="text/css" />
- <link rel="stylesheet" type="text/css" href="css/welcome_index.css">
- <!--[if lt IE 9]>
- <script type="text/javascript" src="cross/js/respond.min.js"></script>
- <![endif]-->
- </head>
- <body style="background:url(images/index_bg.jpg) no-repeat; background-size:cover; height:100%">
- <div class="index_welcome_box">
- <div class="tit c-f20">-欢迎使用-</div>
- <div class="name">健康之路全流程系统</div>
- <p>最优秀的 IM</p>
- <p>最强大而又轻便的功能</p>
- <p>联网PC,APP</p>
- <p>随时随地与同行交流</p>
- <br/>
- <p>我们</p>
- <p>不仅给您想要的</p>
- <p>还将带给您想象不到的...</p>
- </div>
- <div class="index_pic_box">
- <div class="pic p_01 fl"><img src="images/wel_pic_01.png"></div>
- <div class="pic p_02 fl"><img src="images/wel_pic_02.png"></div>
- <div class="pic p_03 fl"><img src="images/wel_pic_03.png"></div>
- </div>
- <script type="text/javascript" src="cross/js/jquery/1.8.3/jquery.js"></script>
- <script>
- $(function(){
- function winResize(){
- var winW=$(window).width();
- if(winW<=1130){
- $('.index_pic_box .pic').addClass('min_w')
- }
- else{
- $('.index_pic_box .pic').removeClass('min_w')
- }
- }
- winResize();
- $(window).resize(function(){
- winResize();
- })
- })
- </script>
- </body>
- </html>
|