我正在尝试显示用户可以平移的大图像(因此垂直和水平滚动)。但我无法让图像滚动。这就是我所拥有的:
Ext.define('myapp.view.image.Floorplan', {
extend: 'Ext.Container',
requires: 'Ext.Img',
xtype: 'floorplan',
config: {
title: 'Floorplan',
iconCls: 'locate',
items: [
{
xtype: 'image',
scrollable: true,
src: './resources/images/floorplan.png',
height: 1570,
width: 1047
}
]
}
});
如何使图像可滚动?
谢谢马特