попробуй!
Ext.application({
name:'ehmm',
launch:function(){
Ext.create('Ext.Carousel', {
fullscreen: true,
defaults: {
styleHtmlContent: true
},
scroll:'vertical',
items: [
{
html : 'Item 1',
style: 'background-color: #5E99CC'
},
{
html : 'Item 2',
style: 'background-color: #759E60'
},
{
html : 'Item 3',
style:'background-color:red;'
},
{
html:'contohnya',
style:'background-color:pink;'
},
]
});
}
});