Last active
July 17, 2018 02:35
-
-
Save tado/5bf4bc335f8336df616b7a44cd4e911a to your computer and use it in GitHub Desktop.
ml5.js プロジェクトテンプレート
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>ml5.jsはじめの一歩</title> | |
| <!-- p5.jsのライブラリ読み込み --> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/p5.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/addons/p5.dom.min.js"></script> | |
| <!-- ml5.jsのライブラリ読み込み --> | |
| <script src="https://unpkg.com/ml5"></script> | |
| <!-- css --> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.10.0/github-markdown.css" /> | |
| <style> | |
| body { | |
| margin: 2em 12%; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="markdown-body"> | |
| <h1>ml5.jsのテンプレート</h1> | |
| <script> | |
| //ここにコードが入る | |
| </script> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment