编码:
Ext.define("app.view.Login", {
extend:'Ext.Panel',
fullscreen:true,
xtype:'login',
requires:[
'Ext.form.Panel',
'Ext.Button',
'Ext.field.Text',
'Ext.field.Password',
'app.view.Main'
],
config:{
fullscreen:true,
cls:'login',
style:'background-image:url("img/login.png"); background-size:100% auto;',
scrollable:false,
items:[]
}
...
在我的 app.js 中:
launch:function () {
Ext.Viewport.add(Ext.create('App.view.Login'));
}
它在 Chrome 浏览器中运行良好,但只在 iphone 上显示空白页面。有谁知道什么可能导致这个问题?我做错什么了吗?或者它是一个错误?