Jump to content
  • 0

НЕ работает Image Map в IE6


orgi
 Share

Question

Добрый день! надеюсь солнечный!

Столкнулась с такой проблемой. Использую на главной странице слайдер js easyslide. И хотелось сделать в 2 ряда картинки, как решение сделала image map.

И все было отлично, до тех пор пока не посмотрела в ие6, второе изображение он не воспринимает как image map, но на местах где описана area выдает alt всей картинки, а не title эрии. (все работает в хроме, лисе, опере и ие8) Есть подозрение, что на ие7 тоже распространяется данный баг (как я полагаю)

Возможно я что-то не так делаю, или есть какие-другие причины.

Очень буду благодарна за ваши комментарии.

так это выглядит в живую

привожу код


<div id="slider">
<ul>
<li><img src="images/partners1.jpg" alt="Партнеры ИнБалт электро" usemap="#row1" width="620"/>
<map name="row1">
<area shape="rect" coords="20,6,155,48" href="druseidt.html" title="Druseidt"/>
<area shape="rect" coords="176,6,305,48" href="electro-pjp.html" title="Electro-PJP"/>
<area shape="rect" coords="330,6,482,48" href="telegaertner.html" title="Telegaertner"/>
<area shape="rect" coords="502,6,586,48" href="itt.html" title="ITT"/>
<area shape="rect" coords="25,53,140,94" href="isv.html" title="ISV"/>
<area shape="rect" coords="176,63,305,94" href="amphenol.html" title="Amphenol"/>
<area shape="rect" coords="330,63,482,94" href="sks-hirschmann.html" title="SKS-Kontakttechnik"/>
<area shape="rect" coords="502,63,586,94" href="pce.html" title="PCE"/>
</map>
</li>
<li><img src="images/partners2.jpg" alt="InBalt electro partners" usemap="#test" width="620"/>
<map name="test">
<area shape="rect" coords="40,6,144,48" href="#" title="Glenair"/>
<area shape="rect" coords="176,13,305,50" href="multi-contact.html" title="Multi-Contact"/>
<area shape="rect" coords="330,13,482,50" href="#" title="LEMO"/>
<area shape="rect" coords="525,4,590,54" href="#" title="Sure Seal"/>
<area shape="rect" coords="26,66,164,94" href="mennekes.html" title="Mennekes"/>
<area shape="rect" coords="200,58,280,94" href="#" title="Anderson Power Products"/>
<area shape="rect" coords="330,58,482,94" href="icore.html" title="Icore"/>
<area shape="rect" coords="495,61,601,94" href="#" title="Deutsch"/>
</map>
</li>


</ul>
</div>

UPD:

если добавить тертью картинку, то не будет воспринимать первое и третье изображение, а второе будет facepalm

Edited by orgi
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Проблема в слайдере. У меня в тестере данный код работает коректно

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>test</title>
</head>
<body>
</div>
<ul>
<li>
<img src="http://inbalt.ru/images/partners1.jpg" alt="Партнеры ИнБалт электро" usemap="#row1" width="620"/>
<map name="row1">
<area shape="rect" coords="20,6,155,48" href="druseidt.html" title="Druseidt"/>
<area shape="rect" coords="176,6,305,48" href="electro-pjp.html" title="Electro-PJP"/>
<area shape="rect" coords="330,6,482,48" href="telegaertner.html" title="Telegaertner"/>
<area shape="rect" coords="502,6,586,48" href="itt.html" title="ITT"/>
<area shape="rect" coords="25,53,140,94" href="isv.html" title="ISV"/>
<area shape="rect" coords="176,63,305,94" href="amphenol.html" title="Amphenol"/>
<area shape="rect" coords="330,63,482,94" href="sks-hirschmann.html" title="SKS-Kontakttechnik"/>
<area shape="rect" coords="502,63,586,94" href="pce.html" title="PCE"/>
</map>
</li>
<li>
<img src="http://inbalt.ru/images/partners2.jpg" alt="InBalt electro partners" usemap="#test" width="620"/>
<map name="test">
<area shape="rect" coords="40,6,144,48" href="#" title="Glenair"/>
<area shape="rect" coords="176,13,305,50" href="multi-contact.html" title="Multi-Contact"/>
<area shape="rect" coords="330,13,482,50" href="#" title="LEMO"/>
<area shape="rect" coords="525,4,590,54" href="#" title="Sure Seal"/>
<area shape="rect" coords="26,66,164,94" href="mennekes.html" title="Mennekes"/>
<area shape="rect" coords="200,58,280,94" href="#" title="Anderson Power Products"/>
<area shape="rect" coords="330,58,482,94" href="icore.html" title="Icore"/>
<area shape="rect" coords="495,61,601,94" href="#" title="Deutsch"/>
</map>
</li>
</ul>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0

В ie7 пример по ссылке и впрямь не работает, но если сделать отдельную страничку только с приведенным кодом, но без скриптов - всё норм. Может, дело в скрипте слайдера? Предлагаю попробовать перенести код самих <map> в более безопасное место, хоть в самый конец страницы.

И еще вопрос (хоть к проблеме это и не относится): зачем концевые слеши, когда доктайп HTML 4?

Link to comment
Share on other sites

  • 0

В ie7 пример по ссылке и впрямь не работает, но если сделать отдельную страничку только с приведенным кодом, но без скриптов - всё норм. Может, дело в скрипте слайдера? Предлагаю попробовать перенести код самих <map> в более безопасное место, хоть в самый конец страницы.

И еще вопрос (хоть к проблеме это и не относится): зачем концевые слеши, когда доктайп HTML 4?

спасибо попробую!

а их надо убрать?

Link to comment
Share on other sites

  • 0

В ie7 пример по ссылке и впрямь не работает, но если сделать отдельную страничку только с приведенным кодом, но без скриптов - всё норм. Может, дело в скрипте слайдера? Предлагаю попробовать перенести код самих <map> в более безопасное место, хоть в самый конец страницы.

Спасибо огромное, Ваш совет помог! перенесла код в конец страницы - и все заработало!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy