为了账号安全,请及时绑定邮箱和手机立即绑定

导航条菜单的制作

江老实 Web前端工程师
难度初级
时长23分
学习人数
综合评分9.53
1004人评价 查看评价
9.8 内容实用
9.4 简洁易懂
9.4 逻辑清晰
  • li a:hover{ background-color:#F60; color:green} text-indent:20px; display:block;
    查看全部
    0 采集 收起 来源:编程练习

    2017-04-25

  • 水平方向伸缩菜单: JavaScript: 1、window.onload //DOM执行完以后在执行其下代码 2、document.getElementsByTagName('a'); //获取所有的a标签 3、object(a).length //说的是a标签的个数 4、onmouseover、onmouseout //鼠标移入移出 5、clearInterval(this.time); //实行动画前要先清除之前的动画 避免动画累加 6、setInterval(function(){},30); //每30毫秒 实行一下此函数 7、This.offsetWidth+8+"px"; //当前的宽度+变宽的速度 jQuery: 1、首先要引入jQuery再写script标签及jq代码 <script type="tt/js" src="....min.js"></script><script> jq代码 </script> 2、$('a').hover() //选择所有a标签 jq封装的hover方法 3、hover方法自带移入移出方法 function(){},function(){} 4、$(this).stop().animate({"width":"160px"},200); //实行当前动画前先停掉上一个动画;自带移入移出动画animate 宽度发生变化 延迟200毫秒
    查看全部
  • <style type="text/css"> *{margin:0; padding:0; font-size:14px;} a{color:#333;text-decoration:none} .nav{list-style:none; height:30px; border-bottom:10px solid #F60; margin-top:20px; padding-left:50px;} .nav li{float:left} .nav li a{display:block; height:30px;text-align:center; line-height:30px; width:120px; background:url(http://img1.sycdn.imooc.com//53846438000168f901200060.jpg) no-repeat; margin-left:1px;} .nav li a.on, .nav li a:hover{background-position:0px -30px; color:#fff;} </style> <ul class="nav"> <li><a class="on" href="#">首  页</a><> <li><a href="#">新闻快讯</a><> <li><a href="#">产品展示</a><> <li><a href="#">售后服务</a><> <li><a href="#">联系我们</a><> </ul> 在a标签中设置宽高,背景图(不重复); 为了给第一个li默认,所以给定义on类设置; 设置鼠标滑过的效果,a:hover,调整背景图位置(background-position:左右 上下); 用border-radius设置同样的圆角效果如图;
    查看全部
    0 采集 收起 来源:编程练习

    2018-03-22

  • <!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"> *{margin:0; padding:0; font-size:14px;} ul{ list-style:none; width:100px} a{color:#333;text-decoration:none} .nav li a{ display:inline-block; text-indent:10px; height:30px; line-height:30px; width:100px; background-color:#efefef; margin-bottom:1px;} .nav li a:hover{ background-color:#F60; color:#fff} </style> </head> <body> <ul class="nav"> <li><a href="#">首  页</a></li> <li><a href="#">新闻快讯</a></li> <li><a href="#">产品展示</a></li> <li><a href="#">售后服务</a></li> <li><a href="#">联系我们</a></li> </ul> </body> </html>
    查看全部
    0 采集 收起 来源:编程练习

    2018-03-22

  • block:独占一行;大小可以设置;不设置就和父级一致; inline:共占一行;大小不可设置与内容一致; inline-block:共占一行;大小可设置;
    查看全部
  • 此处未完成
    查看全部
    0 采集 收起 来源:编程挑战

    2017-04-23

  • 待回顾
    查看全部
    0 采集 收起 来源:编程挑战

    2017-04-22

  • 以后回顾
    查看全部
  • 菜单<li>浮动后,<li>脱离文档流,导致<ul>将失去高度和宽度,如果需要对<ul>进行背景设置,首先要给<ul>定义宽,高。
    查看全部
    0 采集 收起 来源:练习题

    2018-03-22

  • 文本缩进:text-indent;
    查看全部
  • margin负值,向相反方向移动
    查看全部
  • a { color: #333; text-decoration: none } ul { list-style: none; height: 30px; border-bottom: 5px solid #F60; margin-top: 20px; padding-left: 50px; } ul li { float: left } ul li a { display: block; height: 30px; text-align: center; line-height: 30px; width:120px; background: #efefef; margin-left: 1px; } a.on, a:hover { background: #F60; color: #fff; } </style> <script> window.onload=function(){ var aA=document.getElementsByTagName('a'); for(var i=0; i<aA.length; i++){ aA[i].onmouseover=function(){ var This=this; clearInterval (This.time); This.time=setInterval (function(){ This.style.width=This.offsetWidth+8+"px"; if(This.offsetWidth >=160) clearInterval(This.time); },30) } aA[i].onmouseout=function(){ clearInterval(this.time); var This=this; this.time=setInterval(function(){ This.style.width=This.offsetWidth-8+"px"; if(This.offsetWidth<=120){ This.style.width='120px'; clearInterval(This.time); } },30)
    查看全部
    0 采集 收起 来源:编程练习

    2018-03-22

  • 全角的空格,全角的空格不会被忽略
    查看全部
    1 采集 收起 来源:编程练习

    2017-04-17

  • 居中对齐:text-align:center;
    查看全部
  • 文本缩进:text-indent; a:hover{背景颜色;字体颜色}
    查看全部

举报

0/150
提交
取消
课程须知
1.熟悉html知识,尤其对<ul>和<a>比较熟悉; 2.对css样式比较了解; 3.掌握JavaScript和jQuery基础知识。
老师告诉你能学到什么?
轻松制作出各种形式的网站导航条菜单

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!