HTML5 Game Development
   
  • HOME
  • News
  • Tutorials
  • Engines
  • Demos
  • Tools
  • Partners
  • Mobile HTML Game
  • Guess The Celebrity
  • About us

IvanK Lib: a WebGL based HTML5 engine

IvanK Lib is a HTML5 Engine inspired by Flash (the tag line is actually “Like Flash, but faster” that uses the power of GPU accelerated WebGL to render 2d graphics on the screen.

Here’s a sample of the code from the graphics demo on the site:

<html>

<head>

     <script type="text/javascript" src="http://lib.ivank.net/ivank.js"></script>

     <script type="text/javascript">

          function Start()

          {

               var stage = new Stage("c");



               var sp = new Sprite();

               stage.addChild(sp);



               //	rectangles

               for(var i=0; i<50; i++)

               {

                    var color = Math.floor(Math.random()*0xffffff);

                    sp.graphics.beginFill(color, 0.6);

                    sp.graphics.drawRect(Math.random()*800, Math.random()*500, 70, 70);

               }



               //	line

               sp.graphics.lineStyle(2, 0xff0000);

               sp.graphics.moveTo(20, 20);

               sp.graphics.lineTo(400, 400);

          }

     </script>

</head>

<body onload="Start();"><canvas id="c"></canvas></body>

</html>

You can try a couple of projects made with the game below:

Share List

You might also find this interesting:


  1. Box2DJs: a 2D Javascript Physics Engine Box2Djs is a Javsacript port of the Actionscript port of the C++ 2D Physics Engine Box2D. It was ported form the action script using a automated script, so it shares...

  2. PXLoader – A JavaScript Preloader for HTML5 Apps PixelLab has released a JavaScript library to simplify the download of images, sound files and other various assets for HTML5 games called PxLoader. Here’s a basic example from the site:...

  3. DivSugar, a CSS-based 3D Graphics Engine DivSugar is a CSS3 based 3D graphics engine. While it's not as performant as a WebGL might be for full games, the fact that it uses CSS3 means that it can easily...

  4. Adobe Previews export to HTML5 from Flash professional As people have long anticipated, while Flash player may not be the future of Adobe’s mobile strategy, Adobe is working hard to keep Flash Professional as the tool for animators...

  5. Chrome now most popular browser in the world The king is dead, long live the king. According to statcounter.com, last week Chrome passed IE as the most popular browser in the world. And there was much rejoicing in...

HTML5 Engines

License HTML5 Games

Are you a company looking to license HTML5 games? We recommend MarketJS.com, a B2B platform for licensing games.

MarketJS has over 300 HTML5 games for licensing. They also provide additional services such as game reskin, custom development, and white label portals.

Html5 Game Development


Follow @GameDevHTML5



WHAT’S NEW

  • GPT3 Voting Board

  • Game Localization For Food Delivery App

  • HTML5 Games in Guest Room Tablets

  • What’s New in Phaser 3.50

  • Particle and Sprite Editors in Babylon.js 4.2



NEW DEMOS

  • Vertical Platformer Games Using GDevelop

  • HTML5 Games for HR Technology

  • Building Vertical Platformer Games using Kaboom

  • Vertical Endless Runner Prototype

  • Particle and Sprite Editors in Babylon.js 4.2


ENGINES

  • Modd.io – User-Friendly HTML5 Game Engine

    Here is another user-friendly HTML5 game engine for your next gaming project. Modd.io game editor uses a sandbox approach in building HTML5 games. No coding is required. Choose from several …Read more

  • Vertical Platformer Games Using GDevelop

    Last time, we introduced GDevelop as a viable option for no-code game engines. Now, let’s try building vertical platformer games using GDevelop. GDevelop comes with two behaviors to build platformer …Read more

  • Best Practices in Building HTML5 Games

    As the saying goes, “Quality is always the result of intelligent effort.” This timeless quote by John Ruskin summarizes most of the best practices in building HTML5 games by today’s …Read more

SEARCH OUR ARCHIVES

CONNECT

rss twitter

HTML5 Game Development is proudly run by 3P Solutions Inc

GOT NEWS?

Send new engines, demos, information and tips to hello@html5gamedevelopment.com

MONTHLY MEETUP

In boston? Join us for the Monthly HTML5 Game Development meetup.

BOOKS

We're in the process of writing a few books about game development. Coming soon!

Copyright HTML5gamedevelopment.com