HotSpots on Animated Gif? - Joomla! Forum - community, help and support
hello everyone,
i want create 2 narrow hotspots on animated gif client using on website.
i created in flash , exported animated gif.
i appreciate can send way.
thanks.
i want create 2 narrow hotspots on animated gif client using on website.
i created in flash , exported animated gif.
i appreciate can send way.
thanks.
"hotspots", otherwise known image map. see tutorial below:
http://www.w3schools.com/tags/tag_map.asp
you code this, such example below
the "coords" distance (in pixels) hot-spot section/link (within image, i.e. left, top, right, bottom (not order)
also see example in action: http://www.w3schools.com/tags/tryit.asp ... ml_areamap
i did find extension on jed, might you:
http://extensions.joomla.org/extensions ... ge-hotspot
http://www.w3schools.com/tags/tag_map.asp
you code this, such example below
code: select all
<img src="planets.gif" width="145" height="126" alt="planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" alt="sun" href="sun.htm">
<area shape="circle" coords="90,58,3" alt="mercury" href="mercur.htm">
<area shape="circle" coords="124,58,8" alt="venus" href="venus.htm">
</map>
the "coords" distance (in pixels) hot-spot section/link (within image, i.e. left, top, right, bottom (not order)
also see example in action: http://www.w3schools.com/tags/tryit.asp ... ml_areamap
i did find extension on jed, might you:
http://extensions.joomla.org/extensions ... ge-hotspot
Comments
Post a Comment