浏览代码

Add multi-file example

1991
urlysses 7 年前
父节点
当前提交
1571064535
共有 4 个文件被更改,包括 24 次插入0 次删除
  1. +8
    -0
      examples/public/css/styles.css
  2. 二进制
      examples/public/images/1991.png
  3. +12
    -0
      examples/public/index.html
  4. +4
    -0
      examples/public/js/scripts.js

+ 8
- 0
examples/public/css/styles.css 查看文件

@@ -0,0 +1,8 @@
html,
body {
margin: 0;
padding: 0;
}
body {
background: #2637dd;
}

二进制
examples/public/images/1991.png 查看文件

之前 之后
宽度: 404  |  高度: 56  |  大小: 965B

+ 12
- 0
examples/public/index.html 查看文件

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<title>fff</title>
</head>
<body>
<img src="images/1991.png" alt="1991">
<script type="text/javascript" src="js/scripts.js"></script>
</body>
</html>

+ 4
- 0
examples/public/js/scripts.js 查看文件

@@ -0,0 +1,4 @@
/*jslint browser: true*/
(function () {
console.log("fff");
}());

正在加载...
取消
保存