前端学习(1813):前端调试之微博个人banner开发

index.html

<!DOCTYPE html>
<html lang="en"><head>
<!--系统内置 start-->
<script type="text/javascript"></script>
<!--系统内置 end--><meta charset="UTF-8"><title>微博实战--banner</title><link rel="stylesheet" href="index.css">
</head><body><section class="banner"><header><!-- 头像 --><div class="head"></div><!-- 姓名 性别 等级 --><div class="title"><span>我是娜扎</span><i class="sex"></i><i class="level"></i></div><div class="introduce">演员,代表作《择天记》</div><div class="actions clearfix"><div class="focus"><span>关注</span></div><div class="focus-more"></div><div class="p-message">私信</div><div class="m-more"></div></div></header><nav><div class="container clearfix"><span class="left">她的主页</span><span class="right">她的相册</span></div></nav></section>
</body></html>

index.css

* {margin: 0;padding: 0;
}
.clearfix::after {content: '';display: block;clear: both;
}.banner {box-sizing: border-box;width: 920px;
}.banner header {box-sizing: border-box;height: 300px;padding-top: 30px;background: url(./images/banner-bg.png) no-repeat center;background-size: contain;
}.banner header .head {width: 110px;height: 110px;margin: 0 auto;border-radius: 50%;background: url(./images/banner-head-icon.png) no-repeat center;background-size: contain;
}.banner header .title {margin-top: 10px;margin-bottom: 5px;text-align: center;
}.banner header .title span {font-size: 22px;line-height: 29px;font-family: PingFang SC;font-style: normal;font-weight: 500;color: #ffffff;text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.31);vertical-align: text-bottom;
}.banner header .title i {display: inline-block;width: 16px;height: 16px;
}.banner header .title i.sex {background: url(./images/sex-icon.png) no-repeat center;background-size: contain;
}.banner header .title i.level {background: url(./images/leval-icon.png) no-repeat center;background-size: contain;
}.banner header .introduce {margin-bottom: 19px;text-align: center;font-family: PingFang SC;font-style: normal;font-weight: 500;font-size: 12px;line-height: 20px;color: #FFFFFF;text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.42);
}.banner header .actions {width: 275px;margin: 0 auto;
}.banner header .actions .focus {position: relative;float: left;width: 100px;background: linear-gradient(180deg, #FA823C 0%, #F55F10 100%);border-radius: 2px;font-family: PingFang SC;font-style: normal;font-weight: 500;font-size: 14px;line-height: 32px;color: #FFFFFF;
}.banner header .actions .focus::before {position: absolute;top: 11px;left: 27px;content: '';width: 10px;height: 10px;background: url(./images/add-icon.png) no-repeat center;background-size: contain;
}.banner header .actions .focus span {margin-left: 42px;
}.banner header .actions .focus-more {position: relative;float: left;margin-left: 5px;margin-right: 12px;width: 20px;height: 32px;background: linear-gradient(180deg, #FA823C 0%, #F55F10 100%);border-radius: 2px;
}.banner header .actions .focus-more::before {content: '';position: absolute;top: 14px;left: 7px;width: 7px;height: 4px;background: url(./images/triangle-icon.png) no-repeat center;background-size: contain;
}.banner header .actions .p-message {float: left;width: 100px;margin-right: 8px;background: #70757F;border-radius: 2px;text-align: center;line-height: 32px;color: #FFFFFF;font-family: PingFang SC;font-style: normal;font-weight: 500;font-size: 14px;
}.banner header .actions .m-more {position: relative;float: left;width: 30px;height: 32px;background: #70757F;border-radius: 2px;
}.banner header .actions .m-more::before {content: '';position: absolute;top: 10px;left: 8px;width: 14px;height: 11px;background: url(./images/list-icon.png) no-repeat center;background-size: contain;
}.banner nav {box-sizing: border-box;background: #FFFFFF;box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
}.banner nav .container {width: 332px;margin: 0 auto;
}.banner nav .container span {box-sizing: border-box;float: left;height: 40px;font-family: PingFang SC;font-style: normal;font-weight: normal;font-size: 14px;line-height: 14px;color: #000000;
}.banner nav .container span.left {line-height: 40px;font-weight: 600;border-bottom: 2px solid #F7691D;
}.banner nav .container span.right {float: right;line-height: 40px;
}

运行结果

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/418840.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

操作系统课设——设计模拟一个SPOOLING假脱机输出程序

广州大学操作系统课程设计报告 要求&#xff1a;书写课程设计报告&#xff0c;报告中应该包含如下内容&#xff1a; 一&#xff0e;课程设计题目及内容 课程设计题目&#xff1a;题目三&#xff1a; 设计模拟一个SPOOLING假脱机输出程序 &#xff08;1&#xff09; 系统设计要…

操作系统实验——进程管理与进程通信

广州大学学生实验报告 实验一 进程管理与进程通信 一、实验目的 1、掌握进程的概念&#xff0c;明确进程的含义。 2、认识并了解进程并发执行的实质&#xff0c;进程的阻塞与唤醒&#xff0c;终止与退出的过程。 3、熟悉进程的睡眠、同步、撤消等进程控制方法。 4、分析进程…

前端学习(1815):前端调试之css flex 练习1

index.html <!DOCTYPE html> <html lang"en"><head><!--系统内置 start--><script type"text/javascript"></script><!--系统内置 end--><meta charset"UTF-8" /><meta name"viewport…

关于操作系统的学习总结

学了一学期的操作系统&#xff0c;就瞎写点东西反思一下吧。 我是广州大学计算机科学与技术专业的&#xff0c;操作系统的知识是比较抽象的。第一看书时必要的。我们的操作系统课程是张艳玲副教授授课的。张老师讲课认真&#xff0c;是一个不错的老师。我们上课用的课本是这本…

iis6 配置python CGI

打开iis管理器&#xff0c;在Web服务扩展中添加一个新的Web服务扩展 点击添加&#xff0c;浏览找到python的目录&#xff0c;文件类型改为CGI exe文件 选择python.exe 然后在目录后添加 %s %s&#xff08;搜了一圈&#xff0c;还没找到原因&#xff09; 确定就行&#xff0c;然…

广州大学专业选修课介绍-----------Linux操作系统分析及实践

教材&#xff1a; 课程内容&#xff1a;你去看一下课本就知道教什么了(●◡●) 考核方式&#xff1a;考察

今天课堂总结

1.带缓存的字符输入输出流 1 package com.xia;2 3 import java.io.BufferedReader;4 import java.io.BufferedWriter;5 import java.io.File;6 import java.io.FileReader;7 import java.io.FileWriter;8 9 public class test { 10 11 public static void main(String[] a…

微信服务项目表

本文介绍了方倍工作室对外提供的微信相关服务介绍&#xff0c;供有需要购买的客户进行参考。 免费服务图书购买语音问答代码视频技术咨询企业顾问定制服务服务内容微信基础教程常用代码下载微信完整教程图书源码下载发起问题查看他人答案微信高级代码微信开发视频微信开发技术技…

前端学习(1818):前端面试题之封装函数之进行字符串驼峰的命名

<!DOCTYPE html> <html><head><meta charset"UTF-8"><title></title></head><body><script type"text/javascript">//已知有字符串fooget-element-by-id,写一个function将其转化成驼峰表示法”getE…

前端学习(1819):前端面试题之封装函数之冒泡排序

<!DOCTYPE html> <html><head><meta charset"UTF-8"><title></title></head><body><script type"text/javascript">var arr [32,4,67,82,21,11];///轮数for(var i 0; i<arr.length-1;i){//次数…

前端学习(1821):前端面试题之封装函数之去重

<!DOCTYPE html> <html><head><meta charset"UTF-8"><title></title></head><body><script type"text/javascript">/** 1.创建一个新数组,把原数组中的第一个元素插入到新数组中* 2.遍历原数组中的…

天猫整站SSM-分页-limit(做个人学习笔记整理用)

数据库使用的是mysql 要想在Mybatis中使用分页查询&#xff0c;首先要清楚mysql中limit的用法。 limit a,b a是从第a1条数据开始&#xff0c;b是指读取几条数据 例如&#xff1a;select * from table limit 0,10 这句sql语句是说从表中获取第1条开始的10条记录

天猫整站SSM-分页-herf(做个人学习笔记整理用)

天猫整站SSM-分页-&#xff08;做个人学习笔记整理用&#xff09;<li ><a href"?start${page.start-page.count}" aria-label"Previous" ><span aria-hidden"true">‹</span></a> </li>如&#xff1a;<…

Lab1--关于安装JUnit的简要描述

安装JUnit的过程描述&#xff1a; 下载两个jar包&#xff1a; hamcrest-all-1.3.jar junit-4.12.jar 注意在导入完成jar包之后不要随意改变jar包的路径。 创建java程序&#xff0c;书写如下代码进行测试&#xff1a; triangle.java package triangle; public class triangle { …

天猫整站SSM-后台分类管理-增加(做个人学习笔记整理用)

天猫整站SSM-后台分类管理-增加&#xff08;做个人学习笔记整理用&#xff09; CategoryController&#xff1a; request.getSession().getServletContext()// 获取的是page的上下文。 request.getSession().getServletContext().getRealPath(“”); 是获取的的tamcat的路径&a…

Delphi iOS 开启文件共享 UIFileSharingEnabled

Apple 在 iOS 提供了文件共享&#xff08;FileSharing&#xff09;功能&#xff0c;让 App 有一个对外窗口的目录&#xff0c;透过 iTunes 可以任意管理这个目录的文档内容&#xff08;可拖入文档&#xff0c;也能将文档拖出备份&#xff09;。 如果 App 需要文件共享&#xff…

iOS:iOS开发系列–打造自己的“美图秀秀”(中)

来源&#xff1a; KenshinCui 链接&#xff1a;http://www.cnblogs.com/kenshincui/p/3959951.html 其他状态设置 常用的图形上下文状态设置上面基本都用到了&#xff0c;我们不再一一解释&#xff0c;这里着重说一下叠加模式和填充模式&#xff0c;初学者对于这两个状态设置…