Browse Source

no message

outaozhen 9 years ago
commit
50467db491
11 changed files with 453 additions and 0 deletions
  1. BIN
      css/button01.jpg
  2. BIN
      css/button02.jpg
  3. 378 0
      css/global.css
  4. BIN
      css/small_title.png
  5. BIN
      css/weixin.png
  6. BIN
      images/erweima.jpg
  7. BIN
      images/mainlogo.png
  8. BIN
      images/phone.png
  9. 65 0
      index.html
  10. 6 0
      js/global.js
  11. 4 0
      js/jquery-1.7.1.min.js

BIN
css/button01.jpg


BIN
css/button02.jpg


File diff suppressed because it is too large
+ 378 - 0
css/global.css


BIN
css/small_title.png


BIN
css/weixin.png


BIN
images/erweima.jpg


BIN
images/mainlogo.png


BIN
images/phone.png


+ 65 - 0
index.html

@@ -0,0 +1,65 @@
+<!DOCTYPE html>
+<html lang=zh-cn> 
+<head>
+	<meta charset=utf-8> 
+	<title>纵横考试APP</title> 
+	<meta name=description content=> 
+	<!--<link rel="shortcut icon" href="http://qy.smartcost.com.cn/global/images/favicon.ico">-->
+	<meta name=copyright content=> 
+	<link rel=stylesheet href=css/global.css> 
+	<script src=js/jquery-1.7.1.min.js></script>
+	<script src=js/global.js></script>
+</head>
+<body>
+<div class="globalHeader">
+	<div class="width950">
+		<div class="globalNav">
+			<a href="http://smartcost.com.cn" target="_blank">纵横官网</a>
+			<a href="http://sso.smartcost.com.cn" target="_blank">通行帐号</a>
+			<a href="http://websoft.smartcost.com.cn">网络版</a>
+			<a href="http://qy.smartcost.com.cn">晴雨表</a>
+			<a href="http://qy.smartcost.com.cn" class="now">考试APP</a>
+			<div class="zhzd">
+				<a class="zhzdFir">纵横知道<b></b></a>
+				<div class="zhzdMenu">
+					<a href="http://zhzdwd.com" target="_blank">问答</a>
+					<a href="http://zhzdwk.com" target="_blank">文库</a>
+					<a href="http://zhzdjg.com" target="_blank">价格信息</a>
+				</div>
+			</div>
+		</div>
+	</div>
+</div>
+<div class="userInfoPanel width950 clearfix">
+	<a href="#" title="纵横题库"><img src="images/mainlogo.png"></a>
+</div>
+<div class="indexBanner">
+	<div class="width950 clearfix">
+		<div class="indexMain">
+			<h2>工程人的考试专属APP</h2>
+			<ul>
+				<li>试题全面,公路建筑全覆盖</li>
+				<li>错题巩固,查漏补缺赢高分</li>
+				<li>离线做题,随时随地更随心</li>
+			</ul>
+		</div>
+	</div>
+	<div class="indexImg">
+		<img src="images/phone.png">
+	</div>
+</div>
+<div class="width950 clearfix">
+	<div class="appDown">
+		<div class="appButton"><a href="#" title="点击下载"></a></div>
+		<div class="QR_Code">
+			<a href="#" title="微信扫码下载"><img src="images/erweima.jpg"></a>
+			<span>扫一扫,轻松下载</span>
+		</div>
+	</div>
+</div>
+<div class="footer">
+	<div class="width950">
+		<p>Copyright &copy; 2012 <a href="http://smartcost.com.cn" target="_blank">纵横创新软件有限公司</a>. All Rights Reserved </p>
+	</div>
+</div>
+</body>

+ 6 - 0
js/global.js

@@ -0,0 +1,6 @@
+$(function(){
+$(".zhzdFir").click(function () {
+    $(this).toggleClass("now").siblings(".zhzdMenu").slideToggle("fast")
+    });
+})
+

File diff suppressed because it is too large
+ 4 - 0
js/jquery-1.7.1.min.js