Can someone explain how I would go about creating a logo with click handlers? I want to make a logo that will encompass all pieces of the site, e.g. recipes, search, cookware, etc. I don't exactly know what this is going to look like yet but I would like to be able to have the logo somewhere and when the mouse is clicked on a piece that represents the recipes library then it'll bring up that panel and display the info.
Would something like this be effective? or make sense to implement?
Split my logo into parts and place all the parts next to each other such that it makes the complete logo and each piece has it's own handler to change to respective panel
You could split your image, having pieces in the same container and use the delegate option when registering a click handler on the container to target each of your regions. This way you have one handler to handle all clicks. You can also use an image map: http://www.w3schools.com/tags/tag_map.asp