]> git.proxmox.com Git - extjs.git/blame - extjs/build/examples/kitchensink/modern/src/view/RevealUp.js
add extjs 6.0.1 sources
[extjs.git] / extjs / build / examples / kitchensink / modern / src / view / RevealUp.js
CommitLineData
6527f429
DM
1/**\r
2 * Demonstrates a 'reveal' card transition, which shows a new item by rendering the new item behind the current\r
3 * visible item, then sliding the old item away to reveal the new one, in this case starting from the bottom\r
4 */\r
5Ext.define('KitchenSink.view.RevealUp', {\r
6 extend: 'Ext.Panel',\r
7 requires: ['KitchenSink.view.LoremIpsum'],\r
8 config: {\r
9 cls: 'card card3',\r
10 scrollable: true,\r
11 items: [{\r
12 docked: 'top',\r
13 html: 'Reveal Up Animation'\r
14 }, {\r
15 xtype: 'loremipsum'\r
16 }]\r
17 }\r
18});