English 中文(简体)
jquerymobile的几个问题,scoll越界,启动屏幕和访问的链接
原标题:jquery mobile couple of issues, scoll out of bounds, splash screen and visited links

我已经用jquerymobile创建了一个移动网站,以进入phonegap项目,但我有几个问题,一个更有经验的用户可能能够为我解决:

-----------已解决-------------

  1. I have applied no theme, but when i click on list items Item, the bar stays blue forever ( like a visited state that never goes ) [ should just have an active and over state ]

-----最终解决------------------

  1. 你可以按住标题栏或页脚栏,向上或向下滚动到最好描述的(在应用程序后面)我如何阻止用户滚动到界外。

  2. 我有一个Splash/Loading屏幕,当应用程序启动时,这个屏幕一开始加载得很好,但后来它的大小增加了,我看到加载屏幕的一个放大的角落,然后应用程序终于出现了。。。。请提出建议

谢谢

最佳回答

我有1的答案。

jquery mobile的css代码目前已损坏,适用于alpha 4.1。单击列表项后,它将保持蓝色。除了打开firebug或chromes开发工具并找到该类并将其从css文件中删除之外,别无选择。

我已经通知了他们这个问题,我相信其他人也已经通知了。因此,未来的版本将有望纠正它。

问题回答

至于你的第一个问题。。。

$( a ).live( click ,function() {$(this).removeClass( $.mobile.activeBtnClass )});
$( li ).live( click ,function() {$(this).removeClass( $.mobile.activeBtnClass )});

我在我的网站上注意到,链接(我正在制作数据角色为“button”的按钮)和列表项目在按下后会保持蓝色。上面的代码在将这个问题放在文档的开头后为我删除了它。


----编辑----

对于剩下的两个问题:

一些示例代码和目标设备一样好,但听起来像是视口元标记问题。这是我确定的视口:

<;meta name=“viewport”content=“height=设备高度,width=设备宽度,初始比例=1.0,最大比例=1.0”>;

此视口根据设备屏幕的宽度和高度调整页面大小,并且不允许缩放。您可以通过将“最大比例=1.0”更改为更大的值来允许缩放(iPhone/Safari目前最多支持10.0)。

至于启动屏幕,Xcode 4.0.2(iPhone开发)使将Default.png文件放入/Resources/ssplash/目录变得很容易。如果您使用的是Xcode,请确保在制作项目时使用Phonegap项目向导,因为Phonegap默认会制作这些文件,这样您就可以轻松地替换图像。我使用Eclipses进行Android开发,这也很容易在你的Phonegap应用程序中添加一个启动屏幕。只需将以下代码直接放在/src/App.java文件中的“onCreate”函数之后的“super.onCreate(savedInstanceState);”行之前:

super.setIntegerProperty(“splashscreen”,R.drawable.ssplash);

这需要将一个名为splash.png的图像(我认为任何文件扩展名都可以)放在/res/drawable-*dpi目录中(通常有hdpi、mdpi和ldpi目录)。

注意:我使用的是Phonegap 0.9.5.1,但这应该适用于0.9.2及以上版本。

----结束编辑----






相关问题
Javascript data store solution using PhoneGap

Does anyone have any experience of storing data in JavaScript across all mobile platforms using PhoneGap? My ideal solution would be to use something like SQLite, but unfortunately SQLite isn t ...

get image from iphone, using phonegap camera api

I m new to Xcode and iPhone apps. I want to select an image from iPhone (camera or library) and send to php via ajax. http://wiki.phonegap.com/iPhone:-Camera-API I m using the phonegap framework, ...

Getting Search Keyboard on iPhone using PhoneGap

I have created a search field on a mobile app i am creating via PhoneGap. I ve tried using with no luck. I also know that i could get around the visual aspect of the input field via CSS & ...

How can I detect a shake gesture in PhoneGap 0.8?

I m using PhoneGap 0.8 and I d like to detect a basic shake gesture. I ve found two relevant snippets: http://groups.google.com/group/phonegap/browse_thread/thread/25178468b8eb9e9f http://phonegap....

How do I fix PhoneGap build errors?

I am trying to build a PhoneGap-based iPhone application, but I keep getting the following two errors: ./build-phonegap.sh: line 6: ./configure: No such file or directory cp: lib/iphone/phonegap-min....

热门标签