Online shopping catalog developement?
I want to design an on-line catalog for an apparel shop, I want to design it this way, product picture and below it other colors. when clicked on other colors the picture changes to that color(or a different picture). So I want to know how I can implement this. Should I use flash? or html? confused any help plz...
Public Comments
- You can do it with the help of javascript: <script type="text/javascript"> function changeImage ( selection ) { document.image['imgid'].src = selection.id + '.jpg' } <script> ... for the body <img id="imgid" src="default.jpg" /> <a href="#" onclick="changeImage(this)" id="imageblue">Blue</a> <a href="#" onclick="changeImage(this)" id="imagered">Red</a> <a href="#" onclick="changeImage(this)" id="imagegreen">Green</a>
Powered by Yahoo! Answers