Jump to content
  • 0

Модная карта на javascript


enf0rce
 Share

Question

Собтвен. сабж. Хочется сделать нормальную юзабильную карту для сайта.

Допустим есть карта, рядом с картой допустим права от неё будут идти ссылки, как сделать так чтобы при наведении на ссылки, допустим менялся цвет кружка (котрый на карте), допустим с синего на красный или на какую нить другую форму

Вот макет: 71sLwo7slu.jpg

а вот тут можно посмареть наглядно что я имею ввиду, только тут еще при наведении на точке всплывает окошко, это как сделать я знаю)

Заранее благодарен, жду ответа.

Edited by enf0rce
Link to comment
Share on other sites

18 answers to this question

Recommended Posts

  • 0

там используется карта salons. Отмечены ареи по координатам и на маусовер/маусаут навешаны функции:

onmouseover = "show('box1', this);"

Так вот делаешь дивы в тех местах, где эти квадраты на карте и в маусовер/маусаут дописываешь их отображение/скрытие:

onmouseover = "show('box1', this); document.getElementById('ХреновДив1').style.display='block';

onmouseout = "show('box1', this); document.getElementById('ХреновДив1').style.display='none';

Link to comment
Share on other sites

  • 0

всё равно не оч понял, а можно более наглядно

сделать какую нить типа карты и показать как полностью это работает...

(т.е. карту, на ней поставить точку и показать как всё это будет работать)

Link to comment
Share on other sites

  • 0

В общем проблема не работает

подскажите что сделал не так

в архиве пример

оч нужна помощь

<html>
<!-- Created on: 02.10.2008 -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title></title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="generator" content="AceHTML 6 Pro">
<style>
#main
{
background:#fff url('sample.gif') left top no-repeat;
height:557px;
width:669px;
}
#point
{
position:relative;
top:340px;
left:110px;
height:10px;
line-height:10px;
width:10px;
}
#link
{
width:110px;
height:12px;
left:465px;
top:110px;
line-height:12px;
position:relative;
cursor:pointer;
background-color:red;
}
</style>
<script language="javascript" type="text/javascript">
function over()
{
document.getElementById('point').src="2_t04ka.gif";
}
function out()
{
document.getElementById('point').src="1_t04ka.gif";
}
document.onload=load;
function load()
{
document.getElementById('link').onmouseover=over;
document.getElementById('link').onmouseout=out;
}
</script>
</head>
<body>
<div id="main">
<img src="1_t04ka.gif" id="point" />
<div id="link"> </div>
</div>
</body>
</html>

вот скрин чтобы как то понять

7uLSPttWfV.gif

заранее благодарен

и хотелось чтобы было видно во всех браузерах

Link to comment
Share on other sites

  • 0

CSS:


#bg
{
height:557px;
width:669px;
background:url('sample.gif') left top no-repeat;
}
#point
{
position:absolute;
top:220px;
left:-200px;
height:16px;
line-height:16px;
width:16px;
background:url('1_t04ka.gif') no-repeat;
}
#link
{
display:block;
width:40px;
height:12px;
left:465px;
top:63px;
line-height:12px;
position:relative;
text-decoration:none;
}
#link:hover #point
{
background:url('2_t04ka.gif') no-repeat;
}

HTML


<div id="bg">
<a href="#" id="link">
<div id="point"> </div>
</a>
<div>

ОСЕЛ - инвалид, а в опере и фф все четко)

Edited by Vindex10
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