HTML5几个设计和修改的页面范例分享


Posted in HTML / CSS onSeptember 29, 2015

要了解和熟悉 HTML5 中的新的语义元素,最好的方式就是拿一经典的 HTML 文档作例子,然后把 HTML5 的一些新鲜营养充实进入。如下就是我们要改造的页面,该页面很简单,只包含一篇文章。

ApocalypsePage_Original.html,这是一个格式非常规范的页面,所有的样式均来自于外部样式表。

XML/HTML Code复制内容到剪贴板
  1. <!DOCTYPE html>  
  2. <html lang="zh-CN">  
  3. <head>  
  4.   <meta charset="utf-8">  
  5.   <title>Apocalypse Now</title>  
  6.   <link rel="stylesheet" href="ApocalypsePage_Original.css">  
  7. </head>  
  8.   
  9. <body>  
  10. <div class="Header">  
  11.   <h1>How the World Could End</h1>  
  12.   <p class="Teaser">Scenarios that spell the end of life as we know</p>  
  13.   <p class="Byline">by Ray N. Carnation</p>  
  14. </div><!-- end Header -->  
  15.   
  16. <div class="Content">  
  17.   <p><span class="LeadIn">Right now</span>, you're probably feeling pretty good. After all, life in the developed world is comfortable<span class="style1"></span>probably more comfortable than it's been for the average human being throughout all of recorded history.</p>  
  18.   <p>But don't get too smug. There's still plenty of horrific ways it could all fall apart. In this article, you'll learn about a few of our favorites.</p>  
  19.      
  20.   <h2>Mayan Doomsday</h2>  
  21.   <p>Skeptics suggest that the Mayan calendar simply rolls to a new 5,126-year era after 2012, and doesn't actually predict a life-ending apocalypse. But given that the long-dead Mayans were wrong about virtually everything else, why should we trust them on this?</p>  
  22.      
  23.   <h2>Robot Takeover</h2>  
  24.   <p>Not quite as frightening as a Vampire Takeover or Living-Dead Takeover, a robot rebellion is still a disquieting thought. We are already outnumbered by our technological gadgets, and even Bill Gates fears the day his Japanese robot slave turns him over by the ankles and asks (in a suitably robotic voice) "Who's your daddy now?"</p>  
  25.      
  26.   <h2>Unexplained Singularity</h2>  
  27.   <p>We don't know how the universe started, so we can't be sure it won't just end, maybe today, and maybe with nothing more exciting than a puff of anti-matter and a slight fizzing noise.</p>  
  28.      
  29.   <h2>Runaway Climate Change</h2>  
  30.   <p>Dismissed by some, Al Gore's prophecy of doom may still come true. If it does, we may have to contend with vicious storms, widespread food shortages, and surly air conditioning repairmen.</p>  
  31.      
  32.   <h2>Global Epidemic</h2>  
  33.   <p>Some time in the future, a lethal virus could strike. Predictions differ about the source of the disease, but candidates include monkeys in the African jungle, bioterrorists, birds and pigs with the flu, warriors from the future, an alien race, hospitals that use too many antibiotics, vampires, the CIA, and unwashed brussel sprouts. Whatever the source, it's clearly bad news.</p>  
  34.   
  35. </div><!-- end Content -->  
  36.   
  37. <div class="Footer">  
  38.   <p class="Disclaimer">These apocalyptic predictions do not reflect the views of the author.</p>  
  39.   <p>  
  40.     <a href="AboutUs.html">About Us</a>  
  41.     <a href="Disclaimer.html">Disclaimer</a>  
  42.     <a href="ContactUs.html">Contact Us</a>  
  43.   </p>  
  44.   <p>Copyright © 2014</p>  
  45. </div><!-- end Footer -->  
  46. </body>  
  47. </html>  

在不增加任何 CSS 样式表之前,效果如下:
HTML5几个设计和修改的页面范例分享
上面通过三个 <div> 将页面分成了三个部分,顶部的页眉,中部的内容和底部的页脚。

这个例子中的样式表很简单,整个页面最大宽度设置为 800 像素,避免文本在宽屏显示器上显示过长。页眉位于一个带有蓝色边框的盒子中,内容区的两侧都增加了内边距,而页脚在整个页面的底部居中。

ApocalypsePage_Original.css样式文件内容如下:

XML/HTML Code复制内容到剪贴板
  1. @charset "utf-8";   
  2. /* CSS Document */   
  3. body{   
  4.   /*font-family 要使用安全字体,按照先特殊后一般的原则,   
  5.   先给出你想要的字体,然后是保险一些的字体,   
  6.   最后以 sans-serif 字体结尾*/   
  7.   font-family: "Lucida sans Unicode", "Lucida Grande", Geneva, sans-serif;   
  8.   max-width: 800px; /*最大宽度不超过 800 像素*/   
  9. }   
  10. /*页面顶部的标题区样式*/   
  11. .Header {   
  12.   background-color: #7695FE; /*可接受任何颜色值*/   
  13.   border: thin #336699 solid; /*多合一的 border 属性*/   
  14.   padding: 10px; /* 10像素的内边距,边框与内容之间的距离*/   
  15.   margin: 10px; /* 10像素的外边距,边框与周围元素之间的距离*/   
  16.   text-align: center; /*头部文本居中*/   
  17. }   
  18. /*页眉中标题<h1>样式*/   
  19. .Header h1{   
  20.   margin: 0px;   
  21.   color: white;   
  22.   font-size: xx-large; /*精确控制可以用像素或者em单位*/   
  23. }   
  24. /*页眉中子标题样式*/   
  25. .Header .Teaser{   
  26.   margin: 0px;   
  27.   font-weight: bold;   
  28. }   
  29. /*页眉中署名行样式*/   
  30. .Header .Byline{   
  31.   font-style: italic;   
  32.   font-size: small;   
  33.   margin: 0px;   
  34. }   
  35. .Content{   
  36.   font-size: medium;   
  37.   font-family: Cambria, Cochin, Georgia, "Times New Roman", Times, serif;   
  38.   /*左右内边距最大*/   
  39.   padding-top: 20px;   
  40.   padding-right: 50px;   
  41.   padding-bottom: 5px;   
  42.   padding-left: 50px;   
  43.   line-height: 120%; /*相邻两个文本行之间的距离*/   
  44. }   
  45. .Content .LeadIn{   
  46.   font-weight: bold;   
  47.   font-size: large;   
  48.   font-variant: small-caps;   
  49. }   
  50. .Content .h2{   
  51.   color: #24486C;   
  52.   margin-bottom: 2px;   
  53.   font-size: medium;   
  54. }   
  55. .Content p{   
  56.   margin-top: 0px;   
  57. }   
  58. .Footer{   
  59.   text-align: center;   
  60.   font-size: x-small;   
  61. }   
  62. .Footer .Disclaimer{   
  63.   font-style: italic;   
  64. }   
  65. .Footer p{   
  66.   margin: 3px;   
  67. }  

这样我们的样式表就弯沉过了,现在去看看结果会怎样呢?如下图:
HTML5几个设计和修改的页面范例分享
使用 HTML5 来构造页面

<div> 目前仍旧是 Web 设计的必备元素,它是一个直观、多用途的容器,可以通过它为页面中的任何区块应用样式。但 <div> 的问题在于,它本身不反映与页面相关的任何信息。

要通过 HTML5 改进这种情况,可以把 <div> 替换成更具有描述性语义的元素。

ApocalypsePage_Revised.html中已经将 class 属性为 Header 和 Footer 两个 <div> 替换为 <header> 和 <footer>, 部分代码如下:

XML/HTML Code复制内容到剪贴板
  1. <header>  
  2.   <h1>How the World Could End</h1>  
  3.   <p class="Teaser">Scenarios that spell the end of life as we know</p>  
  4.   <p class="Byline">by Ray N. Carnation</p>  
  5. </header>  
  6. ...   
  7. <footer>  
  8.   <p class="Disclaimer">These apocalyptic predictions do not reflect the views of the author.</p>  
  9.   <p>  
  10.     <a href="AboutUs.html">About Us</a>  
  11. ...   
  12.   </p>  
  13.   <p>Copyright © 2014</p>  
  14. </footer>  

当然,对应的 ApocalypsePage_Revised.css 文件也需要进行修改,将其中的 .Header 和 .Footer 替换为 header 和 footer 。部分代码如下:

XML/HTML Code复制内容到剪贴板
  1. /*页面顶部的标题区样式*/   
  2. header {   
  3.   background-color: #7695FE; /*可接受任何颜色值*/   
  4.   border: thin #336699 solid; /*多合一的 border 属性*/   
  5.   padding: 10px; /* 10像素的内边距,边框与内容之间的距离*/   
  6.   margin: 10px; /* 10像素的外边距,边框与周围元素之间的距离*/   
  7.   text-align: center; /*头部文本居中*/   
  8. }   
  9. /*页眉中标题<h1>样式*/   
  10. header h1{   
  11.   margin: 0px;   
  12.   color: white;   
  13.   font-size: xx-large; /*精确控制可以用像素或者em单位*/   
  14. }  

最后还有一个元素需要用在示例文件中,就是 <article> 元素,表示一个完整的、自成一体的内容。

<ariticle>元素应该包含新闻报道或文章的内容,包括标题、署名和正文。因此添加了 <article> 元素后的结构如下:

XML/HTML Code复制内容到剪贴板
  1. <article>  
  2.   <header>  
  3.   <h1>How the World Could End</h1>  
  4.   <p class="Teaser">Scenarios that spell the end of life as we know</p>  
  5.   <p class="Byline">by Ray N. Carnation</p>  
  6.   </header>  
  7.   <div class="Content">  
  8.   <p><span class="LeadIn">Right now</span>, you're probably feeling pretty good. After all, life in the developed world is comfortable<span class="style1"></span>probably more comfortable than it's been for the average human being throughout all of recorded history.</p>  
  9. ...   
  10.   </div><!-- end Content -->  
  11. </article>  

重新设计后,页面结构如下:
HTML5几个设计和修改的页面范例分享

用 <figure> 添加插图

很多页面都是包含图片的。但是,插图 (figure) 与图片的概念还不完全一样。插图虽然独立于文本,但是文本中会提到它。

一般来说插图应该是浮动的,还会有浮动图题。下面是在文章中添加插图的 HTML 标记,在正文的第一段和第二段之间的位置,部分代码如下:

XML/HTML Code复制内容到剪贴板
  1. ...   
  2. <div class="Content">  
  3. <p><span class="LeadIn">Right now</span>, you're ...</p>  
  4. <div class="FloatFigure">  
  5. <img src="human_skull.jpg" alt="Human skull">  
  6. <p>Will you be the last person standing if one of these apocalyptic   
  7. scenarios plays out?</p>  
  8. </div>  
  9. <p>But don't get too smug. There's...</p>  
  10. ...  

相应的 样式表规则如下:

XML/HTML Code复制内容到剪贴板
  1. .FloatFigure{   
  2.   float: left;   
  3.   margin: 0px 20px 0px 0px;   
  4. }   
  5. .FloatFigure p{   
  6.   max-width: 300px;   
  7.   font-size: small;   
  8.   font-style: italic;   
  9.   margin-bottom: 5px;   
  10. }  

下图展示了这个示例的外观,插图恰好在第一段文本之后,浮动在后面文本的左侧,图题的文本的宽度我们限制住了,让图题显示很充实、很优雅。
HTML5几个设计和修改的页面范例分享

HTML5 中提供了一个 <figure> 元素,图题可以放在 <figure> 中的 <figcaption> 元素里,经过改造,代码如下:

XML/HTML Code复制内容到剪贴板
  1. <figure class="FloatFigure">  
  2.   <img src="human_skull.jpg" alt="Human skull">  
  3.   <figcaption>Will you be the last person standing if one of these apocalyptic   
  4.    scenarios plays out?</figcaption>  
  5. </figure>  

当然样式表中的选择符,相应修改一下即可。

XML/HTML Code复制内容到剪贴板
  1. .FloatFigure{   
  2.   float: left;   
  3.   margin: 0px 20px 0px 0px;   
  4. }   
  5. .FloatFigure figcaption{   
  6.   max-width: 300px;   
  7.   font-size: small;   
  8.   font-style: italic;   
  9.   margin-bottom: 5px;   
  10. }  

最后还有就是 <img> 元素中的 alt 属性可以删除掉,因为图题中包含了图片的完整说明。

用 <aside> 添加附注

新的 <aside> 元素表示与它周围的文本没有密切关系的内容。可以通过它介绍另一个相关的话题,或者对主文档中提出的某个观点进行解释。还可以用来放置广告、相关内容链接。

下面的示例中将用作醒目引文(pull quote),使用 <div> 元素可以创造这种效果,但是用 <aside> 元素让标记更有意义:
HTML5几个设计和修改的页面范例分享
部分代码如下:

XML/HTML Code复制内容到剪贴板
  1.   <p>... (in a suitably robotic voice) "Who's your daddy now?"</p>  
  2.   
  3. <aside class="PullQuote">  
  4.   <img src="quotes_start.png" alt="Quote">  
  5.   We don't know how the universe started, so we can't be sure it won't just end, maybe today.   
  6.   <img src="quotes_end.png" alt="End quote">  
  7. </aside>  
  8.   
  9. <h2>Unexplained Singularity</h2>  

对应的样式表内容如下:

XML/HTML Code复制内容到剪贴板
  1. .PullQuote{   
  2.   float: right;   
  3.   max-width: 300px;   
  4.   border-top: thin black solid;   
  5.   border-bottom: thick black solid;   
  6.   font-size: 30px;   
  7.   line-height: 130%;   
  8.   font-style: italic;   
  9.   padding-top: 5px;   
  10.   padding-bottom: 5px;   
  11.   margin-left: 15px;   
  12.   margin-bottom: 10px;   
  13. }   
  14. .PullQuote img{   
  15.   vertical-align: bottom;   
  16. }  
HTML / CSS 相关文章推荐
CSS3实现swap交换动画
Jan 19 HTML / CSS
CSS3中各种颜色属性的使用教程
May 17 HTML / CSS
HTML5+CSS3网页加载进度条的实现,下载进度条的代码实例
Dec 30 HTML / CSS
浅谈CSS3 动画卡顿解决方案
Jan 02 HTML / CSS
解决margin 外边距合并问题
Jul 03 HTML / CSS
CSS3实现酷炫的3D旋转透视效果
Nov 21 HTML / CSS
canvas实现图片马赛克的示例代码
Mar 26 HTML / CSS
基于HTML5 audio元素播放声音jQuery小插件
May 11 HTML / CSS
html5声频audio和视频video等新特性详细说明
Dec 26 HTML / CSS
HTML5+Canvas+CSS3实现齐天大圣孙悟空腾云驾雾效果
Apr 26 HTML / CSS
HTML5 canvas 瀑布流文字效果的示例代码
Jan 31 HTML / CSS
血轮眼轮回眼特效 html+css
Mar 31 HTML / CSS
简单的HTML5初步入门教程
Sep 29 #HTML / CSS
基于html5 DeviceOrientation 实现微信摇一摇功能
Sep 25 #HTML / CSS
简单介绍HTML5中audio标签的使用
Sep 24 #HTML / CSS
利用HTML5实现使用按钮控制背景音乐开关
Sep 21 #HTML / CSS
深入解析HTML5的IndexedDB索引数据库
Sep 14 #HTML / CSS
使用HTML5的表单验证的简单示例
Sep 09 #HTML / CSS
详解HTML5中的manifest缓存使用
Sep 09 #HTML / CSS
You might like
php self,$this,const,static,-&amp;gt;的使用
2009/10/22 PHP
PHP和JAVA中的重载(overload)和覆盖(override) 介绍
2012/03/01 PHP
PHP解决URL中文GBK乱码问题的两种方法
2014/06/03 PHP
PHP实现的简单日历类
2014/11/29 PHP
php提交post数组参数实例分析
2015/12/17 PHP
php微信公众号开发(2)百度BAE搭建和数据库使用
2016/12/15 PHP
基于PHP-FPM进程池探秘
2017/10/17 PHP
jqGrid jQuery 表格插件测试代码
2011/08/23 Javascript
Extjs4中Form的使用之本地hiddenfield
2013/11/26 Javascript
Javascript全局变量var与不var的区别深入解析
2013/12/09 Javascript
js表格排序实例分析(支持int,float,date,string四种数据类型)
2015/05/06 Javascript
关于javascript中dataset的问题小结
2015/11/16 Javascript
JS获取年月日时分秒的方法分析
2016/11/28 Javascript
JavaScript如何实现图片懒加载(lazyload) 提高用户体验(增强版)
2016/11/30 Javascript
jQuery插件HighCharts绘制2D柱状图、折线图和饼图的组合图效果示例【附demo源码下载】
2017/03/09 Javascript
快速解决vue-cli不能初始化webpack模板的问题
2018/03/20 Javascript
Vuejs学习笔记之使用指令v-model完成表单的数据双向绑定
2019/04/29 Javascript
基于JavaScript实现大文件上传后端代码实例
2020/08/18 Javascript
Python 读写文件和file对象的方法(推荐)
2016/09/12 Python
python3 pillow生成简单验证码图片的示例
2017/09/19 Python
python的exec、eval使用分析
2017/12/11 Python
Python编程flask使用页面模版的方法
2018/12/28 Python
Python 堆叠柱状图绘制方法
2019/07/29 Python
Python使用turtle库绘制小猪佩奇(实例代码)
2020/01/16 Python
屏蔽Django admin界面添加按钮的操作
2020/03/11 Python
用python实现名片管理系统
2020/06/18 Python
Bibloo荷兰:女士、男士和儿童的服装、鞋子和配饰
2019/02/25 全球购物
客服工作职责
2013/12/11 职场文书
小学毕业家长寄语
2014/01/19 职场文书
保险专业自荐信范文
2014/02/20 职场文书
人力资源总监工作说明
2014/03/03 职场文书
2014年教务工作总结
2014/12/03 职场文书
学生党支部工作总结2015
2015/05/26 职场文书
Vue中foreach数组与js中遍历数组的写法说明
2021/06/05 Vue.js
使用python将HTML转换为PDF pdfkit包(wkhtmltopdf) 的使用方法
2022/04/21 Python
Python面试不修改数组找出重复的数字
2022/05/20 Python