" />
一、我们填写广告区域
<!doctype html><html lang="en"><head> <meta chart="utf-8"> <title>title</title> <link rel="stylesheet" href="css/ba.css"> <link rel="stylesheet" href="css/index.css"></head><body><!--顶部区域--><div class="top"> <div class="top_in"> <div class="top_left"> <h1><a href="#" title="努比亚"></a></h1><!--a标签里面的title属性,就是用于当鼠标放到a标签上面的时候会显示的文字--> </div> <div class="top_right"> <ul class="top_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> <li><a href="#">体验店</a></li> <li><a href="#">社区</a></li> </ul> <ul class="top_login"> <!--这里有一个注意点,我们想要使用的右浮动,所以三个li标签应该倒叙写,因为先写的先浮动哦--> <li><a href="#">注册</a></li> <li><a href="#">登录</a></li> <li><a href="#"></a></li> </ul> </div> </div></div><!--广告区域--><大学军训感悟;div class="banner"> <div class="nav"> <ul> <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li> <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li> <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li> <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li> <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li> <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li> <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li> </ul> </div> <div class="figure"></div> <div class="video"></div></div><!--内容区域--><div class="content"></div><!--底部区域--&ps反选快捷键gt;<div class="footer"></div></body></html>
/*顶部区域*/.top{ height:60px; width:100%;/*也就是和父元素一样宽,这里使用百分比的形式,使得网页扩大减小都不会变形*/ background-color: bla演讲读书的演讲稿ck;}.top .top_in{ width: 1200px; margin:0 auto; height:100%; /*background-color: yellow;*/}.top .top_left{ float:left; height:100%; width:190px; /*background-color: pink;*/}.top .top_left>h1{ width: 100%; height: 100%;}.top .top_left>h1>a{ display: inline-block; width: 100%; height: 100%; background:url("../image/nubia_logo.png"); background-size: 190px 60px;/*设置图片大小正好适配div块的大小*/}.top .top_right{ float:right; height: 100%; width: 800px; /*background-color: pink;*/}.top .top_nav{ float:left; width:550px; height: 100%; /*background-color: skyblue;*/}.top .top_nav>li{ float:left; list-style: none;}.top .top_nav>li>a{ font-size:25px; font-weight: bold;/*给文字加粗*/ line-height:60px; color:white;/*文字的颜色,直接是color*/ margin-left:20px;/*这是给文字添加空隙*/ text-decoration:none;/*去掉文字的下划线*/}/*.top .top_nav>li>a:hover{!*移动鼠标上去变化颜色*!*/ /*color:#e82c07;*//*}*/.top .top_login{ float:right; width: 150px; height: 100%; /*background-color: skyblue;*/}.top .top_login>li{ list-style: none; float:right; margin-right:10px;}.top .top_login>li>a{ font-size:20px; font-weight:bold; line-height:60px; color:white; text-decoration:none;}.top ul>li>a:hover{/*移动鼠标上去变化颜色*/ color:#e82c07; /*这里我们使用.top ,top_login>li>a:hover而使用了ul来替代top_login这个可以说是代码的重构,我们希望 li标签里的文字鼠标悬浮都变色,这样我们把父层级一改,可以省汽车广告语略代码,在后续编程中这些都是隐形的小技巧 */}.top .top_login>li:nth-child(3){ width: 30px; height: 37px; background:url("../image/nubia_person.png"); margin-top:10px;}/*广告区域*/.banner{ height: 800px; width: 100%; background-color: green;}/*内容区域*/.content{ height: 1883px; width: 100%; background-color: blue;}.banner .nav{ width: 1200px; height: 157px; /*margin:0 auto;*//*这里我们想要居中这个模块,但是我们把定位流变成了绝对定位,所以就不管用了*/ background:pink; position:absolute;/*只所所以改成绝对定位流,就是想要让这个盒子脱标,这样就可以让nav这个盒子悬浮在下个盒子上面*/ left:50%;/*通过这种方式来进行居中盒子,靠左边的一边,然后利用一半的宽度-600px进行回退*/ margin-left:-600px;}.banner .nav>ul{ width:100%; height:100%; background:yellow; padding-left: 75px; padding-right:75px; 低纬度范围box-sizing:border-box;/*上面使用了内边距,这里是为了不让大盒子变形*/}.banner .nav>ul>li{ width: 150px; height:100%; background:purple; float:left;/*之所以变成浮动流,是因为li会独占一行,这样会占有七行,浮动流可以使它水平排版了*/ /*border:1px solid black;*/ box-sizing:border-box;/*为了就是不用因为边框而使得盒子变大变小*/ list-style: none;}.banner .nac>ul>li image{ width:150px; height:157px;}.banner .figure{ width: 100%; height: 600px; background:red;}.banner .video{ width: 1200px; height: 250px; margin: 0 auto; margin-top: 10px; background:skyblue;}/*底部区域*/.footer{}
二、源码:
1.项目:nubia
地址:
https://github.com/ruigege66/html_learning/tree/master/nubia
2.csdn:https://blog.csdn.net/weixin_44630050
3.博客园:https://www.cnblogs.com/ruigege0000/
4.欢迎关注微信公众号:傅里叶变换,个人账号,仅用于技术交流,后台回复“礼包”获取java大数据学习视频礼包
本文发布于:2023-04-03 18:18:37,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/35984b78f50652231d656da8c6abe6c5.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:HTML连载83.doc
本文 PDF 下载地址:HTML连载83.pdf
留言与评论(共有 0 条评论) |