我正在阅读Crafty 教程,遇到了一个我找不到文档的代码片段。搜索标点符号太难了。
有问题的第 11 行和第 12 行遵循该行并以andCrafty.e
开头。这些属性属于什么对象?.text
.css
//the loading screen that will display while our assets load
Crafty.scene("loading", function () {
//load takes an array of assets and a callback when complete
Crafty.load(["sprite.png"], function () {
Crafty.scene("main"); //when everything is loaded, run the main scene
});
//black background with some loading text
Crafty.background("#000");
Crafty.e("2D, DOM, Text").attr({ w: 100, h: 20, x: 150, y: 120 })
.text("Loading")
.css({ "text-align": "center" });
});
//automatically play the loading scene
Crafty.scene("loading");
这将在规范中的什么位置?