我在面板上方创建了一个浮动面板,并向浮动面板添加了轮播。现在的问题是,在狂欢时我可以看到所有添加的项目。我只希望一个项目显示在浮动面板上,而其他项目隐藏而不显示在浮动面板之外。我怎样才能做到这一点?
提前致谢。
代码:
var App = new Ext.Application({
name: 'CarouselDemo',
useLoadMask: true,
launch: function () {
overlayView.show();
}
});
var overlayView = new Ext.Panel({
floating: true,
centered: true,
styleHtmlContent: true,
width:600,
height:600,
items: [
{
xtype : 'carousel',
ui : 'light',
direction: 'horizontal',
items: [
{ html: '<p>Carousels can be vertical and given a ui of "light" or "dark".</p>'
},
{ html: 'Card #2'
},
{ html: 'Card #3'
}
]
}]
});