UNPKG

dreemgl

Version:

DreemGL is an open-source multi-screen prototyping framework for mediated environments, with a visual editor and shader styling for webGL and DALi runtimes written in JavaScript. As a toolkit for gpu-accelerated multiscreen development, DreemGL includes

21 lines 765 B
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Flickr api test</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <p>Fill in your Flickr API key here, and then hit the test button to query Flickr</p> <label for="api_key">API key:</label> <input id="api_key" type="text" pattern="[0-9a-fA-F]{32}" required> <label for="methods">flickr method:</label> <select id="methods"><option>&nbsp;</option></select> <button onclick="testFlickrAPI()">test flickr</button> <button onclick="testFlickrAPI(true)">test flickr by proxy</button> <div id="arguments"></div> <script src="flickrapi.dev.js"></script> <script src="fromBrowser.js"></script> </script> </body> </html>