-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutUs.html
73 lines (72 loc) · 2.81 KB
/
aboutUs.html
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
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
<title>圣女果</title>
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="./css/common.css" />
<link rel="stylesheet" type="text/css" href="./css/style.css" />
</head>
<body>
<!-- [[ 顶部标题 -->
<div class="mainTopTitleBox"><span>溯源</span></div>
<div class="mainTopTitleNoneBox"><!-- 顶部占位 --></div>
<!-- 顶部标题 ]] -->
<div class="mainBodyScrollBox">
<!-- [[ 公司标志 -->
<!-- 公司标志 ]] -->
<!-- 公司标志 ]] -->
<!-- [[ 主区域框 -->
<div class="mainBlockNameBox"><span class="titleBox"><strong>公司简介</strong></span></div>
<div class="mainQrCodeBox">
<div class="picBox"><img style='width:100%;height:100%' src="img/ercode.png"></div>
<div class="linkBox"><a href="http://">公司简介</a></div>
<div class="infoBox">子公司</div>
</div>
<!-- 主区域框 ]] -->
</div>
<!-- [[ 底部导航 -->
<div class="mainFootNavBox">
<ul class="navMenuBox">
<li><a id="form3" href="index.html"><em class="icon01"></em><span>产品</span></a></li>
<li><a id="form1" href="authenticity.html"><em class="icon02"></em><span>真伪</span></a></li>
<li><a id="form2" href="origin.html"><em class="icon03"></em><span>溯源</span></a></li>
<li><a id="form0" href="aboutUs.html"><em class="icon00"></em><span>公司</span></a></li>
</ul>
</div>
<div class="mainFootNavNoneBox"><!-- 底部占位 --></div>
<ul class="mainSecondMenuBox">
</ul>
<script type="text/javascript" src="http://7cha.co/Templates/1/wap/css/jquery-1.7.1.min.js"></script>
<script type="text/javascript">
$(function(){
var num = $(".navMenuBox li").index()+1;
var menuWidth = $(".mainFootNavBox").width();
$(".navMenuBox li").css("width",menuWidth/num);
});
$(function(){
var strUrl=window.location.href;
var arrUrl=strUrl.split("/");
var strPage=arrUrl[arrUrl.length-1];
switch (strPage){
case 'origin.html':
$("#form2").parent("li").addClass("on");
break;
case 'authenticity.html':
$("#form1").parent("li").addClass("on");
break;
case 'index.html':
$("#form3").parent("li").addClass("on");
break;
case 'aboutUs.html':
$("#form0").parent("li").addClass("on");
break;
default:
$("#form3").parent("li").addClass("on");
break;
}
})
</script><!-- 底部导航 ]] -->
</body>
</html>