投放本站广告请联系:
extjscn#126.com
Sencha Touch Carousel 去除底栏
Sencha Touch Carousel 去除底栏
/*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()
- 要发表评论,请先登录