Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. new Ext.Panel({
  2. cls: 'cards',
  3. layout: {
  4. type: 'vbox',
  5. align: 'stretch'
  6. },
  7. defaults: {
  8. flex: 1
  9. },
  10. items: [{
  11. xtype: 'carousel',
  12. items: [{
  13. html: '<p>Navigate the carousel on this page by swiping left/right.</p>',
  14. cls: 'card card1'
  15. },
  16. {
  17. html: '<p>Clicking on either side of the indicators below</p>',
  18. cls: 'card card2'
  19. },
  20. {
  21. html: 'Card #3',
  22. cls: 'card card3'
  23. }]
  24. }]
  25. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement