Вы можете использовать заданное свойство itemLength Карусели,
Ext.create('Ext.Carousel', {
fullscreen: true,
itemLength: 250, // **you can change value as you want**
defaults: {
styleHtmlContent: true
},
items: [
{
html: 'item1',
style: 'background-color:red;'
}, {
html: 'item2',
style: 'background-color:white;'
}, {
html: 'item3',
style: 'background-color:gray;'
}, {
html: 'item4',
style: 'background-color:blue;'
}, {
html: 'item5',
style: 'background-color:yellow;'
}
]
});