Jump to content
  • 0

Доработка выпадающего-вертикального меню


yyyurik
 Share

Question

Добрый день, требуется помощь с меню (в ява коде слабоват)...

Есть вертикальное меню

http://7-8.at.tut.by/menu/menu.html - само меню

http://7-8.at.tut.by/menu/scripts/script.js - ява код

http://7-8.at.tut.by/menu/css/style.css - css файл

В общем необходимо сделать, чтобы при наведении курсора на меню открывалось подменю (сейчас так уже есть), а если убрать курсор то автоматом закрывалось (вот этого нету)... Подскажите как это можно сделать?!

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Ну сделайте две разных функции - одна для открытия, а вторая для закрытия. При открытии блок с меню будет "перекрывать" ссылку и пусть он имеет тоже onmouseover="функция открытия" onmouseout="функция закрытия". В чем проблема-то?

Link to comment
Share on other sites

  • 0

Проблема в том что я в javascript слабоват :huh: знал бы как сделать, проблемы думаю небыло бы...

Насколько я понял нужно сделать функцию function closeMenu(id) по анологии с function openMenu(id) и потом в html вставить onmouseover="функция открытия" onmouseout="функция закрытия". Только как изменить этот код правильно?

function openMenu(id){
for (i=0; i < id_menu.length; i++){
if (id != id_menu[i]){
document.getElementById(id_menu[i]).style.display = "none";
}
}
if (document.getElementById(id).style.display == "block"){
document.getElementById(id).style.display = "none";
}else{
document.getElementById(id).style.display = "block";
}
}

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