用fronpage也成,也就是热点连接

解决方案 »

  1.   

    我认为 fireworks 最精确好用
      

  2.   

    举例说明:
    图片:<img name="aaa.gif" width="100" height="100" border="0" usemap="#Map">-------------------------------
    地图:
    <map name="Map">
      <area shape="rect" coords="30,20,70,40" href="aaa.htm">
      <area shape="rect" coords="30,60,70,80" href="bbb.htm">
    </map>
      

  3.   

    <BODY BGCOLOR="#000000" TEXT="#000000" LEFTMARGIN="0" TOPMARGIN="0">
    <TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0" HEIGHT="80" BGCOLOR="#000000"> 
    <TR><TD> <IMG SRC="images/hudongimage.gif" WIDTH="462" HEIGHT="80" BORDER="0"> 
    </TD></TR> </TABLE><TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0" HEIGHT="20" BGCOLOR="#CC3300"> 
    <TR><TD> <IMG SRC="images/menu.gif" WIDTH="680" HEIGHT="20" USEMAP="#Map" BORDER="0"> 
    </TD></TR> </TABLE><MAP NAME="Map"><AREA SHAPE="rect" COORDS="286,2,381,19" HREF="office/login.php" ALT="办公系统登陆" TITLE="办公系统登陆" TARGET="_blank"><AREA SHAPE="rect" COORDS="6,2,88,19" HREF="trade.php" ALT="行业信息" TITLE="行业信息"><AREA SHAPE="rect" COORDS="101,2,185,19" HREF="internal.php" ALT="企业内部" TITLE="企业内部"><AREA SHAPE="rect" COORDS="197,2,277,18" HREF="touch.php" ALT="企业BBS" TITLE="企业BBS"><AREA SHAPE="rect" COORDS="390,2,447,19" HREF="help.php" ALT="帮助?" TITLE="帮助?"><AREA SHAPE="rect" COORDS="455,1,514,18" HREF="index.php" ALT="返回首页" TITLE="返回首页"></MAP> 
    </BODY>
      

  4.   

    USEMAP Attribute | useMap Property--------------------------------------------------------------------------------Sets or retrieves the URL, often with a book extension (#name), to use as a client-side image map. SyntaxHTML <IMG USEMAP = sURL ... >  
    Scripting img.useMap [ = sURL ]  Possible ValuessURL String that specifies the URL of the image map. The property is read/write with no default value. Expressions can be used in place of the preceding value(s), as of Microsoft&reg; Internet Explorer 5. For more information, see Dynamic Properties.ResThe useMap property identifies the image as a client-side image map by associating a MAP object with the image. This MAP object contains AREA objects that define regions within the image. The user can click these regions to navigate to a designated URL.You can dynamically assign the maps to the image through the useMap property.ExampleThis example specifies map1 as the image map underlying image.gif. The map can be changed to another map, map2, by clicking the button.Sample Code<MAP NAME="map1">
    <AREA NAME="area1" COORDS="0,0,40,40" HREF="doc1.htm" 
        TARGET="frame1">
    <AREA NAME="area2" COORDS="40,0,80,40" HREF="doc2.htm" 
        TARGET="frame1">
    <AREA NAME="area3" COORDS="10,40,40,80" HREF="doc3.htm" 
        TARGET="frame1">
    <AREA NAME="area4" COORDS="40,40,80,80" HREF="doc4.htm" 
        TARGET="frame1">
    </MAP>
    :
    <IMG USEMAP="#map1" ID=idImg SRC="image.gif">
    :
    <BUTTON onclick="idImg.useMap='#map2'">
        Change Maps</BUTTON>