I recently did the Chris Coyier tutorial from the css-tricks.com weblog #38: Basics & Tips on Designing for the iPhone. Needless to say I got very excited and suggested to a guy that I do some code monkey work for that we could now offer iPhone websites to his clients. He said cool, but what about other mobile devices? good question. So what is the low down on designing websites for Android, Blackberry, WindowsMobile, etc? Are people bothering with the other platforms? Thanks.
|
|
Webkit and Opera:For iPhone Safari, Opera Mobile, and Webkit on S60 and Android development is very similar, and quite simple. You can rely on CSS2.1 and JavaScript+DOM. You might get away with serving your regular website with just few changes to stylesheets. The trick is in serving of these stylesheets. Don't use Because some mobile browsers read handheld media, and some insist on screen styles and pretend to have 960px-wide screen (iPhone :/), you'll need to serve mobile stylesheet with both:
The latter is CSS3 Media Query – very useful and works with other mobile browsers too (you can use it in stylesheets with Don't rely on To test page in Opera Mobile, get some older version of desktop Opera and choose View → Small Screen. For Opera Mini it's almost the same as for Opera Mobile, except CSS is re-formatted a bit and DHTML is executed on server-side, which doesn't always give results you'd expect. There's simulator available. Pocket IE:PIE is not (yet) the same engine as IE on Windows. It's mostly as primitive and buggy as IE4 was, but supports some suprisingly advanced properties like It reads both There is simulator for PIE, but it's split into dozen installers, drivers, middleware, plug-ins, firmware and OS images scattered all over Microsoft's site, and you'll find that most of them are outdated, broken or incompatible with each other. And that's just a warm-up before ActiveSync configuration... BlackBerry, OpenWave, Blazer, etc.:Before the BB Storm, it's a nightmare. Only basic HTML works. CSS works on some models, but is primitive and broken. JavaScript works only on some models and it's incredibly slow and lacking (forget about even basic DHTML). There's free BB simulator availble from RIM. If you're unlucky, it'll launch properly once and then you'll have to completely reinstall it :) The same thing is with hundreds of other mobile browsers on low-end phones (powered by likes of OpenWave, which has decent simulator) . You'll have to prepare 1-column basic HTML stripped down website for them. Google Wireless TranscoderEven if you create nifty (X)HTML optimized for every mobile device out there, users of Google Mobile Search will never see it!
Instead, every page will be proxied through "Wireless Transcoder" which brutally chops the code, stripping all stylesheets and scripts (regardless whether browser supports them or not), and even The end result is absolutely awful and there is no opt-out! That's why I suggest looking for " |
||||
|
|
|
Please don't do this, and please don't advise people to do this. Some users intentionally use Google's transcoder because their browser doesn't support JavaScript or CSS well and won't render some pages in a readable way otherwise. Others use it because they don't have unlimited data plans and want to reduce their data usage. And others use it because they have low bandwidth connections. Showing no content instead of (in your opinion) ugly content is just a jerky thing to do. There's a way for users to opt-out: don't use Google Mobile Search. Furthermore, Google's transcoder makes it pretty clear to users when it's molesting the page, and it makes it pretty easy to see the original version for users that want it. |
||
|
|
|
|
So am I correct that there seems to be 3 main players in the mobile browser market excluding browsers that have support for little more than html? The players being Mobile Safari, Opera Mini and The Android Browser which is using webkit anyway. Are they the main 3 that should be taken into consideration? What about the viewport? For example, this is what I used on my first little site: Is the viewport iPhone specific? If so and you were trying to support more than just the iPhone would you have to leave the viewport out? I like the way viewport works. Thanks |
||
|
