我想创建一个视图以从服务器查看 pdf。我在 google 几分钟后得到了这个st2_pdf_panel。我按照演示并将 pdf.js 和 PDF.js 复制到我的项目中。
1但是当应用程序运行时,分页工具栏会在加载pdf文件之前首先显示在视图中间,然后它会停靠在底部。
2 pdf 视图不滚动,iphone 屏幕上的比例看起来很糟糕,我几乎看不到页面中的文字。
3如何放大或缩小?
4这个解决方案有替代品吗?
下面是视图的代码:
Ext.define('Myapp.view.PDF',{
extend : 'Ext.Container',
requires : ['Ext.ux.panel.PDF'],
config : {
items : [
{
xtype : 'titlebar',
docked : 'top',
title : 'PDF',
items : [
{
text : 'back',
ui : 'back',
align : 'left',
listeners : {
tap : function(){
console.log('goback');
}
}
}
]
},//title bar
{
xtype : 'pdfpanel',
height : '100%',
src : 'http://cdn.mozilla.net/pdfjs/tracemonkey.pdf',
style : {
backgroundColor : '#333'
},
pageScale : 0.5,
pageText: 'page {0} of {1}',
}
]
}//config
});