我是sancha touch 2的新手,玩sancha touch sdk自带的kitchensink示例 kitchensink/index.html#demo/inlinedataview
内联数据视图的 UI
看法
/* Here we are adding a dataview to a container
* which(dataview) contains images.
*/
Ext.define('Kitchensink.view.InlineDataView', {
extend: 'Ext.Container',
requires: ['Kitchensink.model.Speaker'],
config: {
layout: 'fit',
items: [{
xtype: 'dataview',
scrollable: true,
inline: true,
itemTpl: '<img src="{photo}">',
store: 'Speakers'
}]
}
});
问题
我想在将这些图像添加到数据视图时以它们(每个单独的)似乎在显示上视图之前在随机位置淡入的方式对这些图像进行动画处理。
类似于http://boedesign.com/demos/jsquares/ example1
Sancha Doc Reference or A hint or how to do,会做,但如果你能粘贴一些参考代码,那就太好了。