forked from ruanyf/es6tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 5107671
Showing
12 changed files
with
909 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Creative Commons Attribution-NonCommercial 4.0 International License | ||
|
||
Disclaimer: This is a human-readable summary of (and not a substitute for) the [license](http://creativecommons.org/licenses/by-nc/4.0/legalcode). | ||
|
||
You are free to: | ||
|
||
- Share — copy and redistribute the material in any medium or format | ||
- Adapt — remix, transform, and build upon the material | ||
|
||
The licensor cannot revoke these freedoms as long as you follow the license terms. | ||
|
||
Under the following terms: | ||
|
||
- Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. | ||
- NonCommercial — You may not use the material for commercial purposes. | ||
- No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits. | ||
|
||
Notices: | ||
|
||
You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an applicable exception or limitation. | ||
|
||
No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# ECMAScript 6入门 | ||
|
||
《ECMAScript 6入门》是一本开源的JavaScript语言教程,介绍ECMAScript 6新增的语法特性。 | ||
|
||
本书力争覆盖ES6与ES5的所有不同之处,对涉及的语法知识给予详细介绍,并给出大量简洁易懂的示例代码。 | ||
|
||
本书为中级难度,适合已有一定JavaScript语言基础的读者,了解这门语言的最新进展;也可当作参考手册,查寻新增的语法点。 | ||
|
||
## 版权许可 | ||
|
||
本书采用“保持署名—非商用”创意共享4.0许可证。 | ||
|
||
只要保持原作者署名和非商用,您可以自由地阅读、分享、修改本书。 | ||
|
||
详细的法律条文请参加[创意共享](http://creativecommons.org/licenses/by-nc/4.0/)网站。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"name": "normalize-css", | ||
"version": "3.0.1", | ||
"main": "normalize.css", | ||
"author": "Nicolas Gallagher", | ||
"ignore": [ | ||
"CHANGELOG.md", | ||
"CONTRIBUTING.md", | ||
"component.json", | ||
"package.json", | ||
"test.html" | ||
], | ||
"homepage": "https://github.com/necolas/normalize.css", | ||
"_release": "3.0.1", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "3.0.1", | ||
"commit": "e3c71c911b0c0ebc0ee14d2421543ce1476fd761" | ||
}, | ||
"_source": "git://github.com/necolas/normalize.css.git", | ||
"_target": "~3.0.1", | ||
"_originalSource": "normalize-css", | ||
"_direct": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Copyright (c) Nicolas Gallagher and Jonathan Neal | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
of the Software, and to permit persons to whom the Software is furnished to do | ||
so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# normalize.css v3 | ||
|
||
Normalize.css is a customisable CSS file that makes browsers render all | ||
elements more consistently and in line with modern standards. | ||
|
||
The project relies on researching the differences between default browser | ||
styles in order to precisely target only the styles that need or benefit from | ||
normalizing. | ||
|
||
[View the test file](http://necolas.github.io/normalize.css/latest/test.html) | ||
|
||
## Install | ||
|
||
Download from the [project page](http://necolas.github.io/normalize.css/). | ||
|
||
Install with [Component(1)](https://github.com/component/component/): `component install necolas/normalize.css` | ||
|
||
Install with [npm](http://npmjs.org/): `npm install --save normalize.css` | ||
|
||
Install with [Bower](http://bower.io/): `bower install --save normalize.css` | ||
|
||
## What does it do? | ||
|
||
* Preserves useful defaults, unlike many CSS resets. | ||
* Normalizes styles for a wide range of elements. | ||
* Corrects bugs and common browser inconsistencies. | ||
* Improves usability with subtle improvements. | ||
* Explains what code does using detailed comments. | ||
|
||
## How to use it | ||
|
||
No other styles should come before Normalize.css. | ||
|
||
It is recommended that you include the `normalize.css` file as untouched | ||
library code. | ||
|
||
## Browser support | ||
|
||
* Google Chrome (latest) | ||
* Mozilla Firefox (latest) | ||
* Mozilla Firefox 4 | ||
* Opera (latest) | ||
* Apple Safari 6+ | ||
* Internet Explorer 8+ | ||
|
||
[Normalize.css v1 provides legacy browser | ||
support](https://github.com/necolas/normalize.css/tree/v1) (IE 6+, Safari 4+), | ||
but is no longer actively developed. | ||
|
||
## Contributing | ||
|
||
Please read the CONTRIBUTING.md | ||
|
||
## Acknowledgements | ||
|
||
Normalize.css is a project by [Nicolas Gallagher](https://github.com/necolas), | ||
co-created with [Jonathan Neal](https://github.com/jonathantneal). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "normalize-css", | ||
"version": "3.0.1", | ||
"main": "normalize.css", | ||
"author": "Nicolas Gallagher", | ||
"ignore": [ | ||
"CHANGELOG.md", | ||
"CONTRIBUTING.md", | ||
"component.json", | ||
"package.json", | ||
"test.html" | ||
] | ||
} |
Oops, something went wrong.