English 中文(简体)
有没有人尝试为PSP设计网页?
原标题:
  • 时间:2009-03-24 02:13:35
  •  标签:

我正在尝试为我的PSP制作一本个人圣经。

我已经尝试过谷歌,但我在浏览时唯一看到的圣经版本是KJV,我正在尝试使我的有3个版本,分别是TNIV、NLT和扩大版圣经。

因此,我的唯一解决方案是为自己制作一个,并且我的方法是将一个html文件保存在我的记忆棒上,并通过控制台浏览器打开它。

我的担忧是:

  1. How does the psp browser handle css and javascript?
  2. Is there a doctype declaration specifically designed for the psp browser?
  3. Can I use any local database to store my texts for easier query or do I have no choice but rely on static text files?
  4. Is there anyone in SO who have experienced developing a page for this console and can he/she give me some tips and advice?

提前感謝你的回覆。 :)

问题回答

最好的方法是制作一个HTML文档文件来创建离线网页。

  1. The PSP has good (but not great) CSS support and weak Javascript support (compared to a desktop browser).
  2. The best Doctype to stick to would be XHTML Strict 1.0.
  3. Not unless you find another way to do it.
  4. Not for the PSP, but I would recommend this: Just keep your markup and CSS as simple as possible. Don t set font-sizes or widths, let the PSP browser do that for you. If you need to generate a bunch of static files, it might be worth building a short script that will do it for you. Don t overcomplicate.

希望有所帮助。

关于我的关注点#1,我只发现这是psp浏览器支持的所有脚本对象的参考,截至他们最新发布的版本.. 我不确定SCE将来是否会添加对其他对象的支持。

无论如何,这里是链接

To answer your issue (not your question), have you thought about using http://www.biblegateway.com/ which can show verses in different Bible translations - instead of writing your code to try to do the same thing? Granted, this only works if you are connected to the Internet.





相关问题
热门标签