我有一些 HTML 内容的高度超过一整页。在此内容的最后,我想添加一个水平旋转木马。我所做的每一次尝试都显示了 HTML 内容,但我无法让轮播正常工作。
这就是我在代码方面的位置......
Ext.create('Ext.Container', {
fullscreen: true,
scrollable: true,
items: [
{
xtype: 'panel',
html: '<h1>Lots of content</h1><p>With additional content</p><p>With additional content</p><ul><li>asdf</li><li>asdf</li></ul>',
style: 'background-color: #2E99FC'
},
{
xtype: 'carousel',
items: [
{
html : 'Item 1',
style: 'background-color: #5E99CC'
},
{
html : 'Item 2',
style: 'background-color: #759E60'
},
{
html : 'Item 3',
style: 'background-color: #FF0000'
}
]
}
]
});
非常感谢任何帮助。