vote up 1 vote down star

I am looking for a way to allow a Web application to provide a different user experience based on the type of visitor. For example, the same set of data should be presented differently to a child versus an adult. This is for a Java Web app.

Just wanted to provide more clarification. What I am hoping for is any best practice for handling all facets for providing a different user experience for different types of visitors (detection of type of visitor, different view presentation, different navigation). My data is hierarchical and traversing that data will most likely be different for different types of visitors. I am capable of coming up with a home grown solution, but I would be interested in any boiler plate solution or framework that would make it easier to implement and maintain. The application in question is a Java app that uses Struts/Tiles 1.x.

flag

33% accept rate
In what way are you having trouble displaying things differently? Can't detect different types of visitors? Can't change the display based on the type? Can't decide what to change? More details, please. – Rob Kennedy Jan 12 at 17:15
To be honest I don't have specific requirements yet. This is something our customer is hinting towards. Our core data is hierarchical so the way it is traversed (navigation) may differ between visitor types. As recommended below the appearance will also differ. – rich Jan 12 at 18:06

4 Answers

vote up 2 vote down

You could just a different theme of colors (more brights and pastels, chunkier buttons, etc.) for a child versus an adult.

You could also change up the layouts.

These changes could all be done with CSS and switching up the CSS Classes of your items based on the type of visitor you are receiving.

link|flag
vote up 1 vote down

A lot of this will depend on how much information you have about your users.

If they're not logged in to an account of some sort, then you've really got no definitive clue.

If they've got an account, and you've got a field on it, then there are a couple options.

One is to have the pages check the user type, and redirect to a corresponding page for the different user type.

Another approach is to have individual components on the page check the user type before rendering, and render differently based on that. It really depends on how different the experience should be.

link|flag
vote up 1 vote down

First of all you would need some way of identifying the type of the visitor - presumably you would do this by having them fill out a form, tick a box etc. at some stage, upon which you set a persistent cookie that you can read back on later requests to detect what segment the user is in.

Then you can use some javascript that runs on page load to read back the visitor type from the cookie, and set CSS appropriately. If you give your <style> tags an id attribute, running some javascript to do something like:

document.getElementById('cssElemId').href = 'childMain.css';

would do what you wanted. You can of course change multiple CSS tags in the same conditional, and dress up the mapping from cookie values to CSS files, but this is the core functionality.

link|flag
vote up 0 vote down

Children & Adults see information differently. If you can display your information in an image and text, a child will be drawn to the image as opposed to the text, whereas an adult will read both the text and the image.

I would suggest more images for children with more colours (As already stated).

Adults should have more text, with fonts which are easy to read.

link|flag
Most adults I know make me question whether you are correct or not. – Rich B Jan 12 at 18:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.