为了使网站更适合iPhone或移动设备访问,要做哪些基本工作?


Answers:


7

特别是对于iPhone,您应该考虑配置视口,该视口控制页面呈现的比例。如果您的站点比默认视口宽度窄980像素,则此功能特别有用。您可以使用meta标签执行此操作:

<meta name = "viewport" content = "width = 590">

您还可以设置比例,以及其他一些设置。您可以在Apple网站上阅读所有详细信息:http : //developer.apple.com/safari/library/documentation/appleapplications/reference/safariwebcontent/usingtheviewport/usingtheviewport.html


5

随着越来越多的手机具有更高的分辨率,良好的浏览器缩放能力和正常的javascript / css支持,为移动网站制作特殊版本的需求已大大减少。确保您不要依赖:hover,我想您会做的很好。关于适用于所有设备的流体布局的清单,上有一篇很好的文章,请看一下:http : //www.alistapart.com/articles/sensitive-web-design/

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.