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

导航条菜单的制作

江老实 Web前端工程师
难度初级
时长23分
学习人数
综合评分9.53
1004人评价 查看评价
9.8 内容实用
9.4 简洁易懂
9.4 逻辑清晰
*{margin:0;padding:0;font-size:14px}
ul{list-style:none;width:100px;}
.nav li a{display:block;height:30px;line-height:30px;background-color:#efefef;margin-bottom:1px;text-indent:20px;}
.nav li a:hover{background-color:#F60;color:#fff;}
a{text-decoration:none;color:#333;}
学完JS再来了!!!
CSS式懵逼...学了JS和jq再来试试看
*{padding: 0; margin: 0;font-size:16px;}
a{
text-decoration:none;
background-color:#cecece;
width:100px;
height:28px;
display:block;
text-align:center;
margin-bottom:2px;
padding-top:7px;
}
a:hover{
background-color:#cc9933;
color:#fdfdfd;
}
不知道怎么说 JavaScript是这个学习路径后面的课程
可以使用css3的动画属性来实现同样的效果。
不用定时器,用css3的新特性是不是更好
a{ transition:width linear .3s;}
.on,a:hover{ width:150px;}
as=document.getElementsByTagName('a');
for(var i=0;i<as.length;i++){as[i].onmouseover=function(){
for(var j=0;j<as.length;j++){as[j].className=''; }
this.className='on';
}
}
那个说text-align:center;在块级元素中不能用的 是不是傻 赞还那么多 赞的人你们就为了花时间去赞也不懂得花时间自己去验证一下吗?
基本的样式清除: *{margin:0;padding:0}

无序列表圆点去除: ul{list-style:none}

下划线去除: a{text-decoration:none}

文本缩进标签 text-indent 不会影响总体宽度(padding会)

需要将a标签设置为块元素,才能设高宽、hover效果 代码:a{display:block}

hover格式 a:hover{}
其实用border-radiu就很方便的
感觉老师是躲在被窝里讲课的,哈哈
这一小节新手很难懂
a{text-decoration: none;display: block;height:30px;line-height: 30px;width:100px;
background-color:#ccc;margin-bottom: 1px;
text-align: center;
transition: width .5s;
}
a:hover{background-color: #f60;color:#fff; width: 150px;}
a{text-decoration: none;display: block;height:30px;line-height: 30px;width:100px;
background-color:#ccc;margin-bottom: 1px;
text-align: center;
transition: width .5s;
}
a:hover{background-color: #f60;color:#fff; width: 150px;}
我的是给li加上 list-style-type:none这个样式才去掉小圆点的,难道就我一个是这样的?
课程须知
1.熟悉html知识,尤其对<ul>和<a>比较熟悉; 2.对css样式比较了解; 3.掌握JavaScript和jQuery基础知识。
老师告诉你能学到什么?
轻松制作出各种形式的网站导航条菜单

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消