当前位置: 代码迷 >> 综合 >> Sencha Touch Carousel 去除底栏
  详细解决方案

Sencha Touch Carousel 去除底栏

热度:41   发布时间:2024-01-09 12:36:45.0

/*global Ext:false */
Ext.application({
launch: function () {
Ext.create('Ext.Carousel', {
defaults: {
styleHtmlContent: true
}, // defaults
indicator: false, //Carousel 去除底栏
fullscreen: true,
items: [
{
html: 'red',
style: 'background-color:#f00;'
}, {
html: 'orange',
style: 'background-color:#ffb600;'
}, {
html: 'yellow',
style: 'background-color:#ff0;'
}, {
html: 'green',
style: 'background-color:#80ff4d;'
}, {
html: 'blue',
style: 'background-color:#009dff;'
}
] // items
}); // create()
} // launch
}); // application()