html - Cutting up one image and giving each part a link -
html - Cutting up one image and giving each part a link -
i have image in photoshop turn navigation graph. need individual pieces buttons not want cutting out every single piece , re position in html , css. there way take image , designate part of link same others without taking image apart? have adobe photoshop cs6 have flexibility in terms of editing.
thanks much help have been stuck problem days.
here link image: http://picpaste.com/thebestthingever-dcyjrkw8.jpg
you can utilize image map.
concept: http://www.w3schools.com/tags/tag_area.asp
<img src="planets.gif" width="145" height="126" alt="planets" usemap="#planetmap"> <map name="planetmap"> <!-- name must match 'usemap' name above --> <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="sun"> <area shape="circle" coords="90,58,3" href="mercur.htm" alt="mercury"> <area shape="circle" coords="124,58,8" href="venus.htm" alt="venus"> </map> howto: http://www.graphics.com/article-old/creating-web-page-mockups-and-image-maps-photoshop
html css photoshop
Comments
Post a Comment