Init Repo

This commit is contained in:
root
2019-09-06 23:53:10 +08:00
commit f0ef89dfbb
7905 changed files with 914138 additions and 0 deletions

37
mobile/orange/.project Executable file
View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>orange</name>
<comment>Create By HBuilder</comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.aptana.ide.core.unifiedBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.aptana.projects.webnature</nature>
</natures>
<filteredResources>
<filter>
<id>1532485796734</id>
<name></name>
<type>10</type>
<matcher>
<id>org.eclipse.ui.ide.orFilterMatcher</id>
<arguments>
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-projectRelativePath-matches-false-false-bin</arguments>
</matcher>
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-projectRelativePath-matches-false-false-setting</arguments>
</matcher>
</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>

54
mobile/orange/css/global.css Executable file
View File

@@ -0,0 +1,54 @@
@charset "utf-8";
/* CSS Document */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,
fieldset,input,textarea,p,blockquote,th,td {
margin:0;
padding:0;
}
body{
font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Hiragino Sans GB W3", "WenQuanYi Micro Hei", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
}
table {
border-collapse:collapse; /*让表格边框细线*/
border-spacing:0; /*清除边框间距*/
}
fieldset,img {
border:0 none; /*有些浏览器默认这些标签有边框,所以要清除默认边框*/
display:block;
}
address,caption,cite,code,dfn,em,i,u,b,strong,th,var {
font-style:normal;
font-weight:normal;
/*清除标签默认文本样式和加粗*/
}
input,textarea{
outline:0 none;/*去掉文本框的默认轮廓线*/
}
ol,ul {
list-style:none; /*清除列表默认样式*/
}
caption,th {
text-align:left; /*清除标签默认文本居中对齐*/
}
h1,h2,h3,h4,h5,h6 {
font-size:100%;
font-weight:normal; /*清除标题标签的默认样式*/
}
a{
text-decoration:none;/*大部分页面中的链接没有下划线*/
}
.clearfix:after{
height:0;
content:" ";
display:block;
overflow:hidden;
clear:both;
}
.clearfix{
zoom:1;/*IE低版本浏览器不支持after伪类所以要加这一句*/
}

43
mobile/orange/css/orange.css Executable file
View File

@@ -0,0 +1,43 @@
body{
background: #fff;
}
.bg{
width: 100%;
position: relative;
}
.bg img{
width: 100%;
}
.ios,.an{
width: 45%;
height: 45px;
border: 2px solid #fff;
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
bottom: 20%;
border-radius: 10px;
}
.ios img,.an img{
width:35px;
height: 35px;
margin-left: 4%;
margin-top: 1.5%;
float: left;
}
.an{
position: absolute;
bottom: 12%;
}
.bg p{
font-family: "微软雅黑";
font-size:20px;
text-align: center;
line-height: 45px;
color: #fff;
}

BIN
mobile/orange/img/an.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
mobile/orange/img/ios.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
mobile/orange/img/or_bg.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

BIN
mobile/orange/img/or_bg.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 302 KiB

34
mobile/orange/index.html Executable file
View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>orange</title>
<link rel="stylesheet" type="text/css" href="css/global.css" />
<link rel="stylesheet" type="text/css" href="css/orange.css" />
</head>
<body>
<div class="bg">
<img src="img/or_bg.gif" />
<div class="ios">
<img src="img/ios.png" />
<p>ios下载</p>
</div>
<div class="an">
<img src="img/an.png" />
<p>Android下载</p>
</div>
</div>
</body>
<script src="js/jquery-3.2.1.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
$('.ios').click(function(){
location.href ='https://itunes.apple.com/cn/app/%E5%90%88%E6%BA%90%E6%83%A0%E5%95%86%E5%9F%8E/id1355322179';
})
$('.an').click(function(){
location.href ='http://android.myapp.com/myapp/detail.htm?apkName=heyuanhui.shop';
})
</script>
</html>

4
mobile/orange/js/jquery-3.2.1.min.js vendored Executable file

File diff suppressed because one or more lines are too long