Created
May 28, 2015 03:21
-
-
Save chikoski/ee84775016a99b2ec12d to your computer and use it in GitHub Desktop.
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
| var app = { | |
| preview: document.querySelector("video"), | |
| shoot: document.querySelector("#shoot"), | |
| canvas: document.querySelector("canvas"), | |
| sliderX: document.querySelector("#width"), | |
| sliderY: document.querySelector("#height"), | |
| stream: null | |
| }; | |
| //(中略) | |
| function updateMosaicSize(){ | |
| givenWidth = Number(app.sliderX.value); | |
| givenHeight = Number(app.sliderY.value); | |
| }; |
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>画像データと、その処理</title> | |
| <meta charset="utf-8"> | |
| </head> | |
| <body> | |
| <div> | |
| <button id="shoot">撮影</button><br> | |
| 幅<input type="range" id="width" min="20" max="100" step="10"><br> | |
| 高さ<input type="range" id="height" min="20" max="100" step="10"> | |
| </div> | |
| <video src="01.mp4" controls></video> | |
| <canvas width="800" height="600"></canvas> | |
| <script src="app.js"></script> | |
| </body> | |
| </html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment