<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="//cdn.jsdelivr.net/phaser/2.4.1/phaser.js"></script>
</head>
<body>
<script>
var game = new Phaser.Game(288,505![图片描述][1],Phaser.AUTO,'game'); //实例化一个Phaser的游戏实例
function preload(){
game.load.image('loading','assets/preloader.gif');
}
function create(){
var preloadSprite=game.add.sprite(50,game.height/2,'loading');
game.add.setPreloadSprite(preloadSprite);
}
</script>
</body>
</html>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…