HTML5参考手册:英文 东南大学出版社 mobi 下载 网盘 caj lrf pdf txt 阿里云

HTML5参考手册:英文 东南大学出版社电子书下载地址
寄语:
新华书店正版,关注店铺成为会员可享店铺专属优惠,团购客户请咨询在线客服!
内容简介:
《HTML5参考手册(影印版)(英文版)》由ChristopherSchmitt、KyleSimpson著,通过你能够在项目中直接使用的众多实用配方,这本手册可以帮助你赢得HTML5的多个功能的实践经验。从标记语义、Web表单以及音频和视频元素到诸如地理定位和富JavaScriptAPI之类的相关技术,你将应用各种知识来获取解决问题的明确方案。《HTML5参考手册(影印版)(英文版)》每个内容丰富的配方都包括示例代码和针对方案为何和如何生效的详细讨论。对于中等水平的人来说,这本手册是成长为不错Web和移动互联网开发者的很好选择,它可以让你选择适合你的HTML5特性――并且帮助你熟悉其余的部分。
书籍目录:
Preface
1. Fundamental Syntax and Semantics
1.1 Specifying the DOCTYPE
1.2 Specifying the Character Set
1.3 Specifying the Language
1.4 Optimizing
s and s
1.5 Adding Document Structure with HTMLS's New Elements
1.6 Choosing Between and
1.7 Checking Your Document Outline
1.8 Modifying the Document Outline
1.9 Emphasizing Text
1.10 Adding Importance to Text
1.11 Highlighting Text for Reference
1.12 Marking Up Small Print
1.13 Defining Acronyms and Abbreviati***
1.14 Adding Links to Block-Level Content
1.15 Marking Up Figures and Capti***
1.16 Marking Up Dates and Times
1.17 Setting the Stage for Native Expanding and Collapsing
1.18 Controlling the Numbering of Your Lists
1.19 Hiding Content to Show Later
1.20 Making Porti*** of a Page Editable
1.21 Setting the Stage for Native Drag-and-Drop
2. Progressive Markup and Techniques
2.1 Adding More Semantic Meaning
2.2 Picking a Markup Style
2.3 Understanding Browser Support for HTML5
2.4 Making Internet Explorer Recognize HTML5 Elements
2.5 Detecting HTML5 Features with JavaScript
2.6 Using HTML5 Boilerplate
2.7 Validating HTML5
2.8 Mapping HTML5 Elements to ID and Class Names
3. Forms
3.1 Displaying a Search Input Field
3.2 Contact Information Input Fields
3.3 Utilizing Date and Time Input Fields
3.4 Number Inputs
3.5 Selecting from a Range of Numbers
3.6 Selecting Colors
3.7 Creating an Editable Drop-Down
3.8 Requiring a Form Field
3.9 Autofocusing a Form Field
3.10 Displaying Placeholder Text
3.11 Disabling Autocomplete
3.12 Restricting Values
3.13 Making HTML5 Work in Older Browsers
3.14 Validating Form Data in Older Browsers with JavaScript
3.15 Example: Sample Form
4. Native Audio
4.1 Adding HTML5 Audio
4.2 Manipulating the Audio Stream
4.3 Generating UsingJavaScript
4.4 Visualizing Using
4.5 Sample Design: Custom Audio Player
5. Native Video
5.1 Adding HTML5 Video
5.2 Ensuring Multi-Browser Video Support
5.3 Setting Video Dimensi***
5.4 Displaying a Placeholder Image Before Video Plays
5.5 Making Video Loop
5.6 Sample Design: Manipulating Video with
6. Microdata and Custom Data
6.1 Adding Microdata to Markup
6.2 Using Microdata and Schema***
6.3 Adding Custom Data to Markup
*** Accessing Custom Data with JavaScript
6.5 Manipulating Custom Data
6.6 Example: Creating a Map Application Using Custom Data
7. Accessibility
7.1 Writing Appropriate alt Text Dei***
7.2 Identifying Abbreviati*** and Acronyms
7.3 Identifying Secti*** of a Page Using ARIA Landmark Roles
7.4 Creating More Accessible Navigation Links
7.5 Associating Form Fields with Their Labels
7.6 Grouping Form Fields Logically
7.7 Enabling a fieldset Dynamically
7.8 Identifying Required Form Fields
7.9 Using ARIA Live Regi*** to Announce When Dynamic Content Is Updating
8. Ge010cation
8.1 Getting Basic Geolocation Data
8.2 Getting Basic Geolocation Data with a Fallback
8.3 Reverse Geocoding an Address with Latitude and Longitude
8.4 Converting an Address into Latitude and Longitude
8.5 Getting Directi*** from the Current Location
86 Example: Starbucks to Starbucks
9.
9.1 Drawing on a
9.2 Using Transparency
9.3 Setting Dimensi***
94 Using Gradients, Patterns, and Line Styles
9.5 Pulling External Images into a Drawing
9.6 Setting Color Transformati***
97 Working with Geometric Transformati***
9.8 Placing Text on a
9.9 Clipping Drawings
9.10 Animating Drawings
9.11 Drawing Graphs with
912 Saving a Drawing to a File
10. Advanced HTML5 JavaScript
10.1 Local Storage
10.2 Application Caching
10.3 Drag and Drop
10.4 Web Workers
10.5 Web Sockets
10.6 History
10.7 Local Files
Appendix: HTML5 Resources
Index
作者介绍:
暂无相关内容,正在全力查找中
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
原文赏析:
现在,有了HTML5,a元素可以包含块级元素了。我们也可以像过去一样使用a,以包含内嵌的内容。唯一不能够嵌入到a中的内容,是另外一个a。
reversed 属性
控制有序列表的编号的另一个属性是reversed属性,它将列表的顺序反转,例如,从10开始倒着数。
<代码开始 lang="html">
<ol reversed>
<li>Apples</li>
<li>Oranges</li>
<li>Bananas</li>
</ol>
遗憾的是,当前还没有浏览器支持这一属性。
</代码结束>
其它内容:
编辑推荐
《HTML5参考手册(影印版)(英文版)》由Christopher Schmitt、Kyle Simpson著,内容包括:
·测试浏览器的HTML5支持度,并且使用特定技术来应用不支持的特性
·了解HTML5如何使得Web表单的实现变得更加简单
·服实现本地音频和视频元素的挑战
·学习在ARIA无障碍访问原则下使用HTML5的技术
·探索各种示例,包括在你的应用中使用地理定位数据
·利用绘制图像、使用透明特性、增加渐变色和模式等等
·通过多个不错JavaScript API把HTML5特性带入现实生活中
书籍介绍
《HTML5参考手册(影印版)(英文版)》由Christopher Schmitt、Kyle Simpson著,通过你能够在项目中直接使用的众多实用配方,这本手册可以帮助你赢得HTML5的多个功能的实践经验。从标记语义、Web表单以及音频和视频元素到诸如地理定位和富JavaScript API之类的相关技术,你将应用各种知识来获取解决问题的明确方案。
《HTML5参考手册(影印版)(英文版)》每个内容丰富的配方都包括示例代码和针对方案为何和如何生效的详细讨论。对于中等水平的人来说,这本手册是成长为高级Web和移动互联网开发者的最佳选择,它可以让你选择适合你的HTML5特性——并且帮助你熟悉其余的部分。
网站评分
书籍多样性:5分
书籍信息完全性:4分
网站更新速度:8分
使用便利性:7分
书籍清晰度:9分
书籍格式兼容性:5分
是否包含广告:4分
加载速度:7分
安全性:6分
稳定性:8分
搜索功能:5分
下载便捷性:9分
下载点评
- 书籍完整(221+)
- 字体合适(540+)
- 博大精深(254+)
- 无缺页(176+)
- 目录完整(74+)
- 体验好(89+)
- 种类多(205+)
- 无盗版(409+)
- 实惠(505+)
下载评价
- 网友 隗***杉:
挺好的,还好看!支持!快下载吧!
- 网友 孔***旋:
很好。顶一个希望越来越好,一直支持。
- 网友 相***儿:
你要的这里都能找到哦!!!
- 网友 石***致:
挺实用的,给个赞!希望越来越好,一直支持。
- 网友 宫***玉:
我说完了。
- 网友 宫***凡:
一般般,只能说收费的比免费的强不少。
- 网友 田***珊:
可以就是有些书搜不到
- 网友 苍***如:
什么格式都有的呀。
- 网友 温***欣:
可以可以可以
- 网友 索***宸:
书的质量很好。资源多
喜欢"HTML5参考手册:英文 东南大学出版社"的人也看了
中公版·2019浙江省***录用考试专用教材:真题模拟全预测(基层类) mobi 下载 网盘 caj lrf pdf txt 阿里云
【正品速发】口算天天练二年级上册青岛版63制青岛出版社教辅课后练任选QDZHYSHD mobi 下载 网盘 caj lrf pdf txt 阿里云
火车迷 mobi 下载 网盘 caj lrf pdf txt 阿里云
无处不在的数学(套装6册) mobi 下载 网盘 caj lrf pdf txt 阿里云
中国历代政治得失 mobi 下载 网盘 caj lrf pdf txt 阿里云
孝经 素书 mobi 下载 网盘 caj lrf pdf txt 阿里云
公路水运工程试验检测考试用书2022 公路水运试验检测师 公路水运道路工程+公共基础***2本 官方正版 公路水运工程试验检测专业技术人员职业资格考试用书 公路水运工程试验检测考试交通工程 mobi 下载 网盘 caj lrf pdf txt 阿里云
人性的优点全集(卡耐基成功学经典)(精) mobi 下载 网盘 caj lrf pdf txt 阿里云
新托业高频词汇短语(含光盘) mobi 下载 网盘 caj lrf pdf txt 阿里云
中国肿瘤整合诊治指南:前列腺癌 2022 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 上海的早晨 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 卡耐基社交艺术与处世智慧 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 西方经济学(第三版)(21世纪高等继续教育精品教材·经济管理类通用系列) mobi 下载 网盘 caj lrf pdf txt 阿里云
- 地下与基础工程软件操作实例(含PKPM和理正及SAP2000)/新概念建筑结构设计丛书 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 朗文环球英语教程(5 教师用书 附光盘) mobi 下载 网盘 caj lrf pdf txt 阿里云
- 小甘图书 小甘柒和远志直通车高中古诗文 高一高二高三适用 高中古诗文大全 小甘古诗词手册语文背诵知识大全小甘 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 正版初中八年级上册音乐书简谱西师大版西师版8八年级音乐上册课本教材 初二2上册音乐 西南师范大学出版社八上音乐书简谱西师大版教材课本教科书 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 萧萍儿童文学获奖作品 彩图版注音版***5册 小顽皮愿望树 儿童文学书课外阅读书籍青少年带拼音读物 安徽少年儿童正版 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 百川菁华2024春教材解读初中道德与法治九年级下册(RJ) mobi 下载 网盘 caj lrf pdf txt 阿里云
- 2021新版 黄冈小状元作业本二年级下册数学北师大 *修订 小学2年级下课本同步作业类教辅资料 二下单元课时同步练习辅导书 mobi 下载 网盘 caj lrf pdf txt 阿里云
书籍真实打分
故事情节:8分
人物塑造:5分
主题深度:7分
文字风格:6分
语言运用:5分
文笔流畅:4分
思想传递:8分
知识深度:8分
知识广度:9分
实用性:7分
章节划分:4分
结构布局:6分
新颖与独特:5分
情感共鸣:5分
引人入胜:9分
现实相关:6分
沉浸感:4分
事实准确性:3分
文化贡献:4分