-3

私が台無しにした場所を誰かに見てもらえますか?

私が達成しようとしている出力は、78 ピクセル x 78 ピクセルのボックスを持ち、各ピクセルに別のページへのリンクを持たせることです。現時点では、最初のピクセルのみが機能します。

コードがページに読み込まれ、画像の下に表示されます。これはどうですか?

   <html>
<head>

<title>Untitled Page</title>

<style type="text/css">
#ImageMap1
{
   border: 0px #000000 solid;
}
</style>
</head>
<body>
<div id="wb_ImageMap1" style="position:absolute;left:0px;top:0px;width:600px;height:600px;z-index:0;">

<img src="images/black.bmp" id="ImageMap1" alt="" usemap="#ImageMap1_map" border="0" style="width:600px;height:600px;">

<map name="ImageMap1_map">
foreach ($string){
    $x = 1; $y = 1; $z = 1;$output = '';
    for($x=1;$x<79;$x++)
    {
    for($y=1;$y<79;$y++)
    $string = $x .','.$y.','.$z;
    $output .= '<area shape="circle" coords="'. $string . '" href="./index.html" target="_blank" alt="" yellow="">'
    }
    }
    echo $output;

</map>
</div>
</body>
</html>
4

2 に答える 2