【发布时间】:2018-01-20 17:27:03
【问题描述】:
我想在悬停时创建具有延迟效果的 2 级导航。
在 css 中把
transition放在哪里?
这里是sn-p代码:
@import url('https://fonts.googleapis.com/css?family=Quicksand&subset=latin-ext');
body {
background: #ADAEAE;
box-sizing: border-box;
color: white;
font-family: 'Quicksand';
margin: 0;
}
nav {
background: #222122;
width: 100%;
text-align: center;
position: fixed;
}
nav ul {
padding: 0;
margin: 0;
list-style: none;
}
nav ul li {
display: inline-block;
}
nav ul a {
display: inline-block;
height: 50px;
line-height: 50px;
padding: 0 10px;
color: white;
text-decoration: none;
}
nav ul a:hover {
background-color: #404040;
transition: all 1s;
}
nav ul ul li {
display: block;
}
nav li ul {
display: none;
position: absolute;
background: #222122;
}
nav li:hover ul {
display: block;
}
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Dokument bez tytułu</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<nav>
<ul>
<li><a href="#">About</a>
<ul>
<li><a href="#">About2</a></li>
<li><a href="#">About3</a></li>
<li><a href="#">About4</a></li>
</ul>
</li>
<li><a href="#">Offer</a>
<ul>
<li><a href="#">Offer2</a></li>
<li><a href="#">Offer3</a></li>
<li><a href="#">Offer4</a></li>
</ul>
</li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</body>
</html>
【问题讨论】:
-
请添加一些您想要的图片并包含您已有的代码
-
好的,我的道歉是在stackoverflow上的第一篇文章。
-
好的,那你想延迟什么?
-
我希望该列表延迟发布。这样的动画效果
标签: html css navbar navigationbar