Why photographers & designers need an iPhone version of their online portfolio.

radiantphotography.com > Blog > business > Why photographers & designers need an iPhone version of their online portfolio.

It’s no surprise that photographers and designers love Flash-based websites! Flash portfolios are dynamic, interactive, and offer a decent level of “right-click, save-as” image protection to keep people from stealing images. As of this posting, Radiant currently uses an XML based flash portfolio plugin for our portfolios, primarily for the protection aspect. The rest of the page is designed in CSS for accessibility across various platforms. But, like other photographers with Flash-based content we had to rethink our design when the iPhone came out. This topic has been covered before, but it’s worth a revisit, and we’re giving you the HTML code to solve the problem.

In it’s stock form, the iPhone doesn’t allow flash content to be seen on the device. If an iPhone user jailbreaks the phone or uses a third party app, they can enable flash content, but many people don’t want to pay for this functionality or risk voiding their warranty. It’s really annoying that the iPhone doesn’t show Flash content out of the box. Furthermore, as of November 2010, the iPhone controls 28.6% of the smartphone market share (Nielsen chart). I’m comfortably guessing most photo buyers, art directors, and editors are Mac and Apple users, so they’re an important demographic to appeal to. Until the iPhone enables Flash content viewing, what’s a photographer or designer with a flash portfolio to do? You need an html version of your portfolio that can be seen on the iPhone.

We didn’t write the script below, but were given it by another photographer, who found it online as well. We’re no coding geniuses here, just sharing the wealth. Plop this script above the tag on whatever page you want to redirect to a mobile version, then make an alternate HTML-based portfolio to redirect to. In our case our WhiteProductPhotography.com “Portfolio” page has this code in it to redirect to a “/mobile.html” version upon sensing the viewing device is an iPhone (see our mobile portfolio here).

Code:

<script>
if(navigator.userAgent.indexOf(“iPhone”) != -1)
{window.location = “type your alternate html portfolio URL here”;}
</script>

Our iPhone version of WhiteProductPhotography.com’s portfolio has been online for just a few weeks and has already garnered just shy of 10% of the site’s total page views. The average visitor spends four minutes looking at the images and it has a 16% bounce rate. While that’s not bad at all, it prompted me to review the mobile page for usability and add two links, one to our FAQ and one to our Pricing/Contact page. That way users don’t have to back out of the mobile portfolio page get back to these features on regular home page. We should see even less bounce rate now that we’ve given clients some navigation options. (Edit: went down to 12.5% in next day after revisions)

If you’re using flash for your portfolios and you’re comfortable with some simple coding, put yourself ahead of your competition with an HTML mobile portfolio.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.