index.html
3.88 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="user-scalable=0, width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta content="telephone=no" name="format-detection" />
<meta content="black" name="apple-mobile-web-app-status-bar-style" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="../css_an/common.css">
<link rel="stylesheet" href="../css_an/idangerous.swiper.css">
<link rel="stylesheet" href="../css_an/index.css">
<title>一步物流-首页</title>
</head>
<body class="indexPage" ontouchstart="">
<div class="m-page">
<!-- header -->
<header class="m-header">
<div class="head">
<h1>一步物流</h1>
</div>
</header>
<!-- content -->
<div class="m-content">
<div class="m-tips">当前没有网络信号</div>
<!-- slider -->
<div class="banner" id="banner">
<!-- Swiper -->
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide" style="background:url(../temp/banner_0.png) center center no-repeat; background-size:cover;"></div>
<div class="swiper-slide" style="background:url(../temp/banner_0.png) center center no-repeat; background-size:cover;"></div>
<div class="swiper-slide" style="background:url(../temp/banner_0.png) center center no-repeat; background-size:cover;"></div>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination"></div>
</div>
</div>
<!-- menu -->
<div class="menu">
<ul class="clearfix">
<!-- javascript:void(0); 用于链接失效 -->
<li class="start">
<a href="order.html">
<span class="m-icon icon-home_fahuo"></span>
<span class="m-badge badge-pause"></span>
</a>
</li>
<li class="list">
<a href="shipping_list.html">
<span class="m-icon icon-home_yundan"></span>
</a>
</li>
<li class="home">
<a href="userCenter.html">
<span class="m-icon icon-home_wo"></span>
<span class="m-badge badge-cert"></span></a>
</li>
<li class="service"><a href="tel:10086"><span class="m-icon icon-home_kefu"></span></a></li>
</ul>
</div>
</div>
</div>
<!-- 未认证 ,更多弹出框 请移步 popup.html -->
<div class="m-popup" id="certPopup">
<div class="popup-head border-1px border-bottom">
<h1>未认证</h1>
</div>
<div class="popup-cont text-center">
<i class="m-icon icon-cert"></i>
<br>
<br>
<p class="text-center">暂不能接单,请认证</p>
</div>
<div class="popup-foot text-center border-1px border-top">
<a href="verify.html" class="m-btn">去认证</a>
</div>
</div>
<script src="../js/vendor/jquery-2.1.4.min.js"></script>
<script src="../js/vendor/popup.js"></script>
<script src="../js/vendor/swipe.js"></script>
<script type="text/javascript" charset="utf-8">
/*轮播图*/
var swiper = new Swiper('.swiper-container', {
pagination: '.swiper-pagination',
paginationClickable: true,
centeredSlides: true,
loop: true,
spaceBetween: 0,
autoplay: 3000,
autoplayDisableOnInteraction: false
});
</script>
</body>
</html>