thanks.html
2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>绍兴市越城区教育满意度调查</title>
<link href="../assets/reset.css" rel="stylesheet"/>
<link href="../assets/style.css" rel="stylesheet"/>
<script src="../assets/jquery-1.8.3.min.js"></script>
<!--[if lte IE 9]>
<script src="http://apps.bdimg.com/libs/html5shiv/3.7/html5shiv.min.js"></script>
<![endif]-->
<style>
html,body{ height:100%;}
.footer{ position:relative; z-index:10; color:#333; padding:5px 0; width:100%; margin-top:10%; text-align:center;}
.footer a{ color:#333;}
</style>
</head>
<body class="bodybg">
<header class="header">
<div class="mid">越城区学校满意程度调查</div>
</header>
<img class="thanks-top" src="../images/thanks-top.jpg"/>
<section class="thanks-info">
<div class="box">
<h3 class="thanks-title">参与者信息</h3>
<div class="row"><span class="name">姓名:王小明</span></div>
<div class="row"><span>手机:13095758568</span></div>
<div class="row">学校:浙江省绍兴市第一中学</div>
</div>
</section>
<section class="footer">
<img src="../images/copyright.gif"/> 杭州顺治科技股份有限公司
<br/>客服热线:<a>400-826-2468</a>
</section>
<img class="thanks-bottom" src="../images/thanks-bottom.jpg" />
<script>
var winHeight = $(window).height();
var winWidth = $(window).width();
$(function(){
var bodyWidth = $('body').width();
if (winHeight > winWidth * 1.778) {
$('body').css('height', winHeight);
} else {
if (winHeight <= 480||winHeight<=winWidth* 1.5) {
$('body').css('height', bodyWidth * 1.778);
}else{
$('body').css('height', winHeight);
}
}
})
</script>
</body>
</html>