Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://jashkenas.github.io/coffee-script/extras/coffee-script.js"></script>
  <script src="https://rawgithub.com/GoodBoyDigital/pixi.js/v1.5.1/bin/pixi.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <script>
    var renderer = new PIXI.WebGLRenderer(500, 400);
    document.body.appendChild(renderer.view);
    var stage = new PIXI.Stage;
    
    var style = {font:"50px Arial", fill:"red"};
 
    var text = new PIXI.Text("Welcome to underground", style);
 
    stage.addChild(text);
    requestAnimationFrame(animate);
    function animate() {
        text.rotation += 0.1;
        renderer.render(stage);
        requestAnimationFrame(animate);
    }
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
futoasepro
0viewers