313ce84a
songchongxian
创建h5 app项目
|
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>反向寻车</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="format-detection" content="telephone=no"/>
<meta name="format-detection" content="email=no"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-title" content="">
<meta name="google" value="notranslate">
<link rel="stylesheet" href="../../iconfont/iconfont.css">
<!--<link rel="stylesheet" href="../../js/bootstrap/bootstrap.css" />-->
<link rel="stylesheet" href="css/fxcommon.css" />
</head>
<style>
.fotip{
margin-top: 50px;
position: relative;
}
.fotip .fobg{
width: 100%;
}
.fotip .foyu{
position: absolute;
bottom: 14.8px;
/*left: 50%;
margin-left: -71.85px;
width: 143.7px;*/
left: 30%;
width: 40%;
}
</style>
<body>
<div class="fanxtctop">
<div class="row">
<div class="col-xs-12">
<i class="icon iconfont" onclick="window.history.go(-1)"></i>
<span class="tt">反向寻车</span>
</div>
</div>
</div>
<div class="fotip">
<img src="imgs/bg.png" class="fobg"/>
<img src="imgs/yu.png" class="foyu"/>
</div>
|