ソースを参照

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");
}());

読み込み中…
キャンセル
保存