X Tutup
Skip to content

Commit afbcce2

Browse files
committed
update
0 parents  commit afbcce2

40 files changed

+9680
-0
lines changed

waterFall/.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

waterFall/.idea/misc.xml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

waterFall/.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

waterFall/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

waterFall/.idea/waterFall.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

waterFall/.idea/workspace.xml

Lines changed: 320 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

waterFall/css/style.css

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
html, body, div, h1, h2, h3, h4, h5, h6, p, span {
2+
margin: 0;
3+
padding: 0;
4+
}
5+
6+
.container {
7+
width: 100%;
8+
max-width: 500px;
9+
margin: 0 auto;
10+
background-color: #f7f7f7;
11+
position: relative;
12+
overflow: hidden;
13+
}
14+
15+
.banner {
16+
width: 100%;
17+
margin-bottom: 5px;
18+
}
19+
20+
.cotent {
21+
width: 100%;
22+
overflow: hidden;
23+
position: relative;
24+
}

waterFall/index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head lang="en">
4+
<meta http-equiv="pragma" content="no-cache">
5+
<meta http-equiv="Cache-Control " content="no-cache,must-revalidate">
6+
<meta name="description" content="">
7+
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8+
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
9+
<title>瀑布流</title>
10+
<link rel="stylesheet" href="./css/style.css">
11+
</head>
12+
<body>
13+
<div class="container">
14+
<img class="banner" src="./resource/images/banner.jpg" />
15+
<div class="cotent">
16+
17+
</div>
18+
</div>
19+
</body>
20+
<script src="./js/jquery-2.1.4.js"></script>
21+
<script src="./js/wf.js"></script>
22+
<script src="./js/index.js"></script>
23+
</html>

waterFall/js/index.js

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
X Tutup