Django横向二级导航栏(鼠标悬空事件)

  1 <!DOCTYPE html>
  2 <html lang="en" xmlns="http://www.w3.org/1999/html">
  3 <head>
  4     <meta charset="UTF-8">
  5     <title>{% block title %} base模板 {% endblock title%}</title>
  6     <style >
  7         th {color:green}
  8         tbody {color:blue;height:50px}
  9         tfoot {color:red}
 10
 11         #header{
 12             background-color: black;
 13             color: azure;
 14             text-align: center;
 15             padding: 5px;
 16         }
 17         /*设定整个导航栏样式*/
 18         #nav{
 19             background-color: gainsboro;
 20             height: 12px;
 21             /*width: 200px;*/
 22             color: black;
 23             /*float: left;*/
 24             padding:5px;
 25         }
 26         #nav a,ul{
 27             text-decoration: none;/* 去除下划线*/
 28             margin: 0px;/* 去除前上方留白*/
 29             padding: 0px; /* 去除左方留白*/
 30         }
 31         /*一级导航栏样式*/
 32         #nav ul li{
 33             display: inline-block;
 34         }
 35         /*一级导航栏鼠标悬停样式*/
 36         #nav ul li:hover{
 37             background-color: burlywood;
 38         }
 39         /*绑定一级导航栏与二级导航栏样式*/
 40         #nav ul li:hover ul{
 41             position: absolute;
 42             display: block;
 43         }
 44         /*二级导航栏样式*/
 45         #nav ul li ul{
 46             background-color: whitesmoke;
 47             display: none;/*默认隐藏*/
 48             /*left: 100px;*/
 49             position: relative; /*相对定位,左移100px*/
 50         }
 51         #nav ul li ul li{
 52             display: block;
 53         }
 54         /*二级导航栏鼠标悬停样式*/
 55         #nav ul li ul li:hover{
 56             background-color: gainsboro;
 57
 58         }
 59         #footer{
 60             background-color: black;
 61             color: azure;
 62             clear: both;
 63             text-align: center;
 64             padding: 5px;
 65         }
 66     </style>
 67
 68
 69
 70 </head>
 71 <body>
 72 <div   id="header">
 73 <h1 >测试工具</h1>
 74 </div>
 75
 76 <div id="nav">
 77     <ul>
 78         <li><a href="/app1/home">主页</a></li>
 79         <li><a href="/app1/home">主目录1号</a>
 80         <ul>
 81             <li><a href="/app1/policy">子项001</a> </li>
 82             <li><a href="/app1/policy/67">子项002</a></li>
 83         </ul></li>
 84         <li><a href="#">目录2号</a>
 85         <ul>
 86             <li><a href="/app1/policy">11111111111</a> </li>
 87             <li><a href="/app1/policy/67">22222222222</a></li>
 88             <li><a href="/app1/policy/67">33333333333333</a></li>
 89         </ul></li>
 90     </ul>
 91 </div>
 92 {% block content %}
 93 主页
 94 {% endblock content %}
 95
 96 <div id="footer">
 97     已经没有了
 98 </div>
 99
100 </body>
101 </html>

结果如下:

原文地址:https://www.cnblogs.com/zhangyamei/p/10327677.html

时间: 2024-10-19 01:29:21

Django横向二级导航栏(鼠标悬空事件)的相关文章

html css二级导航栏

二级导航栏制作: 1.将一级导航栏去除列表样式(list-style:none),并给予浮动,使其横向排列(float:left) 2.给每个li中添加一个<a></a>标签,给a设置样式,使其成为块级元素( display:block),这样只需要点击当前 li 范围区域即可触发a的跳转 3.给需要添加二级导航栏的li里面添加 ul>li ,给个类名,设置其样式为(display:none),使其在普通情况下隐藏 4.设置一级导航栏划过效果,当滑到有二级导航栏的 li 时,

导航栏切换按钮事件

同事写的一段代码,不是很难,但感觉不错保存起来 // 导航栏切换按钮事件 $('ul.main-tab>li').on('mousedown', function() { var $this = $(this), $box = $('.main-tab-content'), i = $this.index(); if ($this.hasClass('on')) { return false; } switch (i) { case 0: break; case 1: updateRadarTa

设置二级导航栏的返回按钮

1. 一般情况下的导航栏跳转,当在一级界面跳转到二级界面的时候,左item的会出现 “返回箭头+一级导航栏的标题”: 比如说:一级导航栏是“白菜精华”,那么二级导航栏的返回键是 : 2. 当我们使用下方的代码(下方代码是在一级界面写)时,确实可以当跳转到二级界面的时候,左上角是“返回图标 + 返回”: self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"返回" style:UI

二级导航栏

像这样,一个菜单横向菜单就建好了,下来我们给栏目一,栏目二,栏目三,添加二级下拉菜单 <div class="nav"> <ul> <li><a href="#">栏目一</a> <ul> <li><a href="#">二级栏目</a></li> <li><a href="#">二级

css导航栏鼠标hover的时候就出现下拉菜单

代码如下: 1 <!DOCTYPE html> 2 <html> 3 <head lang="en"> 4 <meta charset="UTF-8"> 5 <title></title> 6 <style type="text/css"> 7 .two{ 8 background-color: aqua; 9 width: 500px; 10 height: 2

纯css的二级导航栏

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JS Bin</title> </head> <body> <div id="container"> <ul class="nav clearfix"> <li> <a href=#>首

Discuz论坛二级导航栏!

<div style="width:946px;line-height:20px; background:#FFFFFF; border:0px dashed #B1C3D9; font-size:14px;padding:4px; clear:both; margin-top:0px; "> <table width="100%"><tr><td><table width="100%">

织梦 循环二级导航栏 当前页面高亮样式

{dede:channelartlist typeid='30'} <a href="{dede:field name='typeurl'/}" {dede:field name=typeid runphp="yes"}(@me=="")? @me=" class='border' ":@me="";{/dede:field}>{dede:field name='typename'/}</

bootstrap 导航栏鼠标悬停显示下拉菜单

在jsp中加入一下代码: .navbar .nav > li:hover .dropdown-menu { display: block;} 全部代码如下所示: <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4