🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL


Documentation

bu.js

A HTML5 Canvas graphics library

Bu.js Logo

Demos - Guides - API - ChangeLog - Download

Hello World

<!DOCTYPE html> <html> <body>   <script src="https://cdn.rawgit.com/jarvisniu/bu.js/v0.4.0/build/bu.min.js"></script>   <script type="text/javascript">     var bu = new Bu({       objects: {         sun: new Bu.Circle(40).fill("#F40").stroke("#820"),         earth: new Bu.Circle(20).fill("#06F").stroke("#038"),         moon: new Bu.Circle(10).fill("#FF0").stroke("#880"),       },       scene: {         sun: {           earth: {             moon: {}           }         }       },       update: function () {         this.sun.rotation += 0.02         this.earth.rotation += 0.1       },     })   </script> </body> </html>

License

MIT


You May Also Like