Jump to content
  • 0

Горизонтальное меню


Rubik
 Share

Question

6 answers to this question

Recommended Posts

  • 0

Вот так примерное получилось :blush: - http://jsfiddle.net/8xJpH/1/ .

Вот код:

<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
nav{
width: 486px;
margin: 30px auto;
height: 29px;
}

a{
float: left;
padding: 5px 25px;
text-decoration: none;
position: relative;
border-width: 0 1px 0 1px;
border-style: solid;
border-color: #99cd4e;
font-family: Arial, sans-serif;
background: -webkit-linear-gradient(top, #93c940 0%,#7ba92f 100%);
background: -moz-linear-gradient(top, #93c940 0%,#7ba92f 100%);
background: -o-linear-gradient(top, #93c940 0%,#7ba92f 100%);
background: -ms-linear-gradient(top, #93c940 0%,#7ba92f 100%);
background: linear-gradient(top, #93c940 0%,#7ba92f 100%);
}

a:first-child{
border-radius: 12px 0 0 12px;
border-left: none;
}

a:last-child{
border-radius: 0 12px 12px 0;
border-right: none;
}

a:hover{
background: -webkit-linear-gradient(top, #ffc481 0%,#df6710 100%);
background: -moz-linear-gradient(top, #ffc481 0%,#df6710 100%);
background: -o-linear-gradient(top, #ffc481 0%,#df6710 100%);
background: -ms-linear-gradient(top, #ffc481 0%,#df6710 100%);
background: linear-gradient(top, #ffc481 0%,#df6710 100%);
color: #efe;

}

a:after, a:before {
top: 100%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
}

a:hover:after {
border-top-color: #df6710;
border-width: 6px;
left: 50%;
margin-left: -6px;
}
</style>
</head>
<body>
<nav>
<a href="#">Ссылка 1</a>
<a href="#">Ссылка 2</a>
<a href="#">Ссылка 3</a>
<a href="#">Ссылка 4</a>
</nav>
</body>
</html>

Edited by mrnobody
Link to comment
Share on other sites

  • 0

На css нельзя сделать что бы при клике на меню выбранное меню оставалось выбранным? Это только на javascript? Если да подскажите пж как сделать.

Можно. Например Вы создали три HTML-файла и у этих трех файлов одинаковая навигация: "Главная", "Статьи", "Контакты". Каждая из этих ссылок ведет к своему HTML-файлу, который Вы создали. Например ссылка "Главная" переведет в первый созданный файл, "Статьи" переведет Вас во второй созданный файл и "Контакты" в третий. И у каждых HTML-файлов своя таблица стилей (CSS) и в этой таблице стилей мы добавляем класс к активной ссылке, которая соответствует HTML-файлу.

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