crafty boiler plate

HTML

<script src="https://rawgithub.com/craftyjs/Crafty/release/dist/crafty-min.js"></script>

JavaScript

var width=600;
var height=500;
Crafty.init(width, height);


Crafty.e("Box,2D,DOM,Color")
    .color("rgb()")
.attr({x:width-600,y:0,w:10,h:10});


Crafty.e("Box,2D,DOM,Color")
    .color("rgb(222,20,20)")
.attr({x:width-350,y:height-300,w:10,h:10});


Crafty.e("Box,2D,DOM,Color")
    .color("rgb()")
.attr({x:width-100,y:0,w:10,h:10});


Crafty.e("Box,2D,DOM,Color")
    .color("rgb()")
.attr({x:width-100,y:height-100,w:10,h:10});


Crafty.e("Box,2D,DOM,Color")
    .color("rgb()")
.attr({x:width-350,y:height-300,w:10,h:10});


Crafty.e("Box,2D,DOM,Color")
    .color("rgb()")
.attr({x:width-350,y:height-300,w:10,h:10});