Jump to content
  • 0

Верстка вертикального меню на основе таблицы


Tord002
 Share

Question

Помогите устранить проблему при верстке вертикального меню на основе таблицы.

Не работает переход с ячейки главного пункта меню на ячейку подпункта.

Проблема понятна - курсор попадает на границу таблицы.

Если границу таблицы убрать с помощью ( cellspacing="0") все работает, но при этом нарушается эстетика и задумка дизайна.

Подскажите возможные варианты решения с сохранением внешнего вида таблицы.


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Меню из таблицы</title>
<style type="text/css">
.таблица {font-family:Tahoma,Geneva,sans-serif;font-size:11px;color:#FFF;}
.none {display:none;}
.block {display:;}
.default {border-top: 2px solid #555555; border-bottom: 2px solid #555555; color: #555555;}
.over {background-color:#FFF;border-top:2px solid #555555;border-bottom:2px solid #555555;cursor:pointer;color:#555555}
.out {background-color: #555555; color: #FFF}
</style>
<table width="100" >
<tr height="25" class="таблица" >
<th bgcolor="#555555" onmouseover="className='over';document.getElementById('2').className='block'" onmouseout="className='out';document.getElementById('2').className='none'">Пункт</a></th>
</tr >
<tr height="25" class="таблица" >
<th id="2" class="none" bgcolor="#555555" onmouseover="className='over'"onmouseout="className='none'">Подпункт</th>
</tr>
</table>
</head>
<body>
</body>
</html>

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

А это нормально, что таблица не в <body>, что ссылка не открыта?

Инедтификаторы можно ставит цифрой? Я не помню.

Чтобы это всё не ковырять, посоветую поставить задержку перед исчезновением подпункта. Как раз мышь успеет перейти на него.

Link to comment
Share on other sites

  • 0

Сделал.


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Меню из таблицы</title>
<style type="text/css">
.таблица {font-family:Tahoma,Geneva,sans-serif;font-size:11px;color:#FFF;}
.none {display:none;}
.block {display:;}
.over {background-color:#FFF;border-top:2px solid #555555;border-bottom:2px solid #555555;cursor:pointer;color:#555555}
.out {background-color: #555555; color: #FFF}
</style>
</head>
<body>
<script>
function go() {
document.getElementById('id2').className='none';
}
function on() {
timeoutId = setTimeout(go, 500)
}
function off() {
clearTimeout(timeoutId)
}
</script>
<table width="100" >
<tr height="25" class="таблица" >
<th bgcolor="#555555" onmouseover="className='over';document.getElementById('id2').className='block'" onmouseout="className='out';on()">Пункт</th>
</tr >
<tr height="25" class="таблица" >
<th id="id2" class="none" bgcolor="#555555" onmouseover="className='over';off()"onmouseout="className='none'">Подпункт</th>
</tr>
</table>
</body>
</html>

Тема закрыта

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