cc.Class({
extends: cc.Component,
properties: {
templateItem: {
default: null,
type: cc.Node
},
content: {
default: null,
type: cc.Node
},
content_layout: {
default: null,
type: cc.Node
}
},
// LIFE-CYCLE CALLBACKS:
// onLoad () {},
start() {
for (var i = 0; i < 20; i++) {
var item = cc.instantiate(this.templateItem);
this.content_layout.addChild(item)
}
this.content.height = (this.templateItem.height + 10) * 20
},
// update (dt) {},
});
scroll view
是什么
滚动视图
属性
bar
view
content
demo
动态添加元素
写一个元素模板
遍历30次
let item = cc.instantiate(this.itemTemplate);
this.content.addChild(item);
还需要不断的控制content的高度
这一步没有auto的吗?