LINUX.ORG.RU

жабаскрипт и map


0

0

Имеется функция следующего содержания:

if (screen_width == 800){
document.img1.width="650";
document.img1.height="450";
document.img1.usemap="#map800";
} else if (screen_width == 1024){
document.img1.width="874";
document.img1.height="618";
document.img1.usemap="#map1024";
} else if (screen_width == 1280){
document.img1.width="1130";
document.img1.height="874";
document.img1.usemap="#map1280";
}

и хтмл:

<img src="../files/la.png" border="0" name="img1" />

<map name="map1280">
<area shape="rect" coords="448,455,658,504" href="works.cgi" />
<area shape="rect" coords="439,625,685,657" href="feedback.cgi" />
</map>

<map name="map1024">
<area shape="rect" coords="349,320,507,355" href="works.cgi" />
<area shape="rect" coords="338,441,533,465" href="feedback.cgi" />
</map>

<map name="map800">
<area shape="rect" coords="259,234,377,260" href="works.cgi" />
<area shape="rect" coords="251,320,395,341" href="feedback.cgi" />
</map>

Размер картинки меняется правильно, а вот карта для изображение вообще не работает :(
Подскажите, в чём может быть дело?

PS. функция вызывается в BODY по onLoad
anonymous
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.