我正在使用来自famous-flex的FlexScrollView来实现聊天。包含消息的不同气泡具有未知高度并且取决于消息内容。这是我添加曲面的方式:
var scrollView = new FlexScrollView({
flow: true,
insertSpec: {
opacity: 0
},
nodeSpring: {
dampingRatio: 0.8,
period: 500
},
autoPipeEvents: true
});
var _surf = new Surface({
size: [undefined, true],
content: someHTMLTemplate
});
scrollView.push(_surf);
我认为使用大小:[undefined,true]可以像我在这里看到的那样工作:https://github.com/aknip/famous-angular-with-famous-flex在这里: https://github.com/IjzerenHein/famous-flex-chat
我还设法使用着名的经典scrollView,但我真的想使用FlexScrollView。