ul和li导航栏

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP ‘test3.jsp‘ starting page</title>
    
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
    <script src="js/jquery-2.1.1.min.js">
        
    </script>
    <style>
        li{
            list-style:none;
            color:blue;
            font-size:12px;
            margin-left:10px;
        }
        ul{
            color:#f1cd23;
            font-size:20px;
            margin:0px;
            padding:1px;
        }
        p{
            width:100px;
            height:25px;
            background-color:#37dddd;
            margin:0px;
            padding:0px;
            border-radius:5px;
            text-align:center;
            
        }
    </style>
  </head>
 
  <body>
    <ul id="ul1">
        <p>1111</p>
        <li>张三</li>
        <li>李四</li>
        <li>王五</li>
    </ul>
     <ul id="ul2">
         <p>2222</p>
        <li>张三</li>
        <li>李四</li>
        <li>王五</li>
    </ul>
     <ul id="ul3">
         <p>3333</p>
        <li>张三</li>
        <li>李四</li>
        <li>王五</li>
    </ul>
  </body>
  <script language="JavaScript">
      $("p").mousemove(function(){
        $(this).parent("ul").find("*").show(500);
        var $p=$(this).parent("ul");
        var $x=$p.siblings();
        $x.find("li").hide(600);
        
    });
    $("p").mouseout(function(){
        $("ul").find("li").hide(600);
    });
  </script>
</html>

时间: 2024-10-05 06:16:48

ul和li导航栏的相关文章

改良版 导航栏自动跟随

css部分: .container { /*最外层div定宽*/ position: relative; width: 15rem; height: 1rem; margin-top: 20rem; } .con { /*第二层div,设置溢出为滚动条*/ overflow-x: scroll; overflow-y: hidden; height: 1rem; font-size: 0.4rem; width: 15rem; position: absolute; top: 0; } .nav

运用&lt;ul&gt;&lt;li&gt;做导航栏

<!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-

ul做导航栏

1.导航栏  编码ul>li    .wrapper { padding: 0;        /*the beginning 开始网页自带16pxmargin*/ margin: 0; width: 300px;      /*父级一开始宽度300px*/ list-style: none;   /*清除格式前面的圆点*/ display: flex;      /*使子元素横向排列*/ justify-content: space-around;    /*flex下带属性  使子元素平均间

【css】导航栏li竖线“|”的写法;

导航栏li竖线“|”的写法: 1.li加boder-right(利用margin-right:-1px:隐去最右边的border): 2.直接在htm写|: 3.利用<span>|</span>: 4.直接切图,利用background:

用ul、li标签 创建css横向导航菜单?(转)

创建CSS样式文本导航条的最简单解决方法也许就是把所有的链接都放在一行文本里,这种方法看起来很合理也很直观.但问题在于把所有的链接都放在一行文本里就很难控制链接之间以及前后的空白.所以,为了避免所有的链接都挤在一起,你最后通常都不得不插入一些东西或者非换行的空白字符作为分隔,让这些文字分离开来,不至于混在一起. 现在我们正常的做法是应用ul.li标签把链接作为无序列表(unordered list)来标识.再应用CSS样式对其进行控制,按我们预想的形式在容器中显示出来.对导航条使用无序列表似乎是

淘宝分类导航条;纯css实现固定导航栏

效果如下: 页面如下: <!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> <style type="t

一步一步实现字母索引导航栏

先来看下实现后的效果: DEMO 链接:在线DEMO,源代码 这个索引导航栏的效果在很多 APP 中都有应用,我也是参考了一些 APP 的效果进行实现. 不过之前接触移动端页面开发较少,所以是边学边做,也就把这个过程中的一些东西整理记录下来. 设计 这个功能的基本需求可以总结为一句话:手指在导航栏(也就是 DEMO 上页面右侧的包含字母的竖条)拖动时,根据当前手指位置,页面主体内容列表跳转到对应字母的内容项. 当然,延伸开来,可以是对于已经排序的列表,导航栏显示对应的索引字符列表,支持快速跳转到

用CSS制作简单导航栏

纯css实现的简单导航栏. 前端开发基础中的基础.. 代码如下: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>导航栏练习-01</title> <style type="text/css"> /* ul与div样式 */ #nav ul{ list-style-type: none; display: inl

导航栏

<!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>         <title>简约导航栏<