UNPKG

jcanvas

Version:

jCanvas brings jQuery's powerful syntax and capability to the HTML5 canvas. Quickly create canvas-based apps that can utilize layers, animations, events, and much more. jCanvas works on all modern browsers and platforms, including iOS and Android.

27 lines (23 loc) 751 B
<!doctype html> <html> <head> <meta charset="utf-8" /> <link href="../node_modules/qunit/qunit/qunit.css" rel="stylesheet" /> <title>jCanvas Unit Tests</title> </head> <body> <h1>jCanvas Unit Tests</h1> <p> This is a collection of jCanvas unit tests written by <a href="https://calebevans.me/" target="_blank">Caleb Evans</a> using the <a href="https://qunitjs.com/" target="_blank">QUnit</a> testing framework. </p> <div id="qunit"></div> <div id="qunit-fixture"></div> <script src="../node_modules/jquery/dist/jquery.js"></script> <script src="../node_modules/qunit/qunit/qunit.js"></script> <script src="../dist/umd/jcanvas.min.js"></script> <script src="tests/jcanvas-tests.js"></script> </body> </html>