UNPKG

rothko

Version:

what color is your landscape

45 lines (43 loc) 1.52 kB
<!DOCTYPE> <html> <head> <link rel='stylesheet' href='style/main.css'/> </head> <body> <div id="root"> <h1>Rothko</h1> <div id = "image-input-wrapper"> <img id="target-image" src="image/garber-tanis-pma.jpg"/> <button id = "image-input-button"></button> <input id = "image-input-hidden" type = "file" accept="image/*"> </div> <div id="dominant-colors"> <h3>지배적인 색</h3> <div class="colors"> </div> </div> <div id="high-sat-colors"> <h3>고채도 색</h3> <div class="colors"> </div> </div> <div id="chroma-colors"> <h3>유채색</h3> <div class="colors"> </div> </div> <div id="achroma-colors"> <h3>무채색</h3> <div class="colors"> </div> </div> </div> <script src='bower_components/chroma-js/chroma.js'></script> <script src='histogram-analyze/src/ha-core.js'></script> <script src="drawing-kit/src/kit-core.js"></script> <script src='histogram-draw/src/hd-core.js'></script> <script src="dep-shim.js"></script> <script src="rothko-core.js"></script> <script src="script/main.js"></script> </body> </html>