GitHub 上一份很受欢迎的前端代码优化指南-强烈推荐收藏
看到一份很受欢迎的前端代码指南,根据自己的理解进行了翻译,但能力有限,对一些JS代码理解不了,如有错误,望斧正。
HTML
语义化标签
HTML5 提供了很多语义化元素,更好地帮助描述内容。希望你能从这些丰富的标签库中受益。
<!-- bad -->
<div id="main">
<div class="article">
<div class="header">
<h1>Blog post</h1>
<p>Published: <span>21st Feb, 2015</span></p>
</div>
<p>…</p>
</div>
</div> <!-- good -->
<main>
<article>
<header>
<h1>Blog post</h1>
<p>Published: <time datetime="2015-02-21">21st Feb, 2015</time></p>
</header>
<p>…</p>
</article>
</main>
请确保正确使用语义化的标签,错误的用法甚至不如保守的用法。
<!-- bad -->
<h1>
<figure>
<img alt=Company src=logo.png>
</figure>
</h1> <!-- good -->
<h1>
<img alt=Company src=logo.png>
</h1>
简洁
确保代码简洁性,不要再采用XHTML的旧做法。
<!-- bad -->
<!doctype html>
<html lang=en>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8" />
<title>Contact</title>
<link rel=stylesheet href=style.css type=text/css />
</head>
<body>
<h1>Contact me</h1>
<label>
Email address:
<input type=email placeholder=you@email.com required=required />
</label>
<script src=main.js type=text/javascript></script>
</body>
</html> <!-- good -->
<!doctype html>
<html lang=en>
<meta charset=utf-8>
<title>Contact</title>
<link rel=stylesheet href=style.css> <h1>Contact me</h1>
<label>
Email address:
<input type=email placeholder=you@email.com required>
</label>
<script src=main.js></script>
</html>
可用性
可用性不应该是事后才考虑的事情。你不必成为WCAG专家来改进网站,你可以通过简单的修改做出不错的效果,例如;
- 正确使用
alt
属性 - 确保链接和按钮正确使用(不要用
<div class="button">
这种粗暴的做法) - 不依赖于颜色来传达信息
- 给表单做好lable标记
<!-- bad -->
<h1><img alt="Logo" src="logo.png"></h1> <!-- good -->
<h1><img alt="My Company, Inc." src="logo.png"></h1>
语言
定义语言和字符编码是可选项,建议在文档级别处定义。使用UTF-8编码。
<!-- bad -->
<!doctype html>
<title>Hello, world.</title> <!-- good -->
<!doctype html>
<html lang=en>
<meta charset=utf-8>
<title>Hello, world.</title>
</html>
性能
除非有非要在加载内容前加载脚本的必要性由,不然别这样做,这样会阻碍网页渲染。如果你的样式表很大,必须独立放到一个文件里。两次HTTP 请求不会显著降低性能。
<!-- bad -->
<!doctype html>
<meta charset=utf-8>
<script src=analytics.js></script>
<title>Hello, world.</title>
<p>...</p> <!-- good -->
<!doctype html>
<meta charset=utf-8>
<title>Hello, world.</title>
<p>...</p>
<script src=analytics.js></script>
CSS
分号
不能漏写分号
/* bad */
div {
color: red
} /* good */
div {
color: red;
}
盒模型
整个文档的盒模型应该要相同,最好使用global * { box-sizing: border-box; }
定义。不要修改某个元素的盒模型。
/* bad */
div {
width: 100%;
padding: 10px;
box-sizing: border-box;
} /* good */
div {
padding: 10px;
}
流
尽量不要改变元素默认行为。保持默认的文本流。比如,移出一个图片下面的一个白块,不影响原本的显示:
/* bad */
img {
display: block;
} /* good */
img {
vertical-align: middle;
}
类似的,尽量不要改变浮动方式。
/* bad */
div {
width: 100px;
position: absolute;
right: 0;
} /* good */
div {
width: 100px;
margin-left: auto;
}
定位
有很多CSS定位方法,尽量避免使用以下方法,根据性能排序:
display: block;
display: flex;
position: relative;
position: sticky;
position: absolute;
position: fixed;
选择器
紧密耦合DOM选择器,三个层级以上建议加class:
/* bad */
div:first-of-type :last-child > p ~ * /* good */
div:first-of-type .info
避免不必要的写法:
/* bad */
img[src$=svg], ul > li:first-child {
opacity: 0;
} /* good */
[src$=svg], ul > :first-child {
opacity: 0;
}
指明
不要让代码难于重写,让选择器更精确,减少ID、避免使用!important
/* bad */
.bar {
color: green !important;
}
.foo {
color: red;
} /* good */
.foo.bar {
color: green;
}
.foo {
color: red;
}
覆盖
覆盖样式会使维护和调试更困难,所以要尽量避免。
/* bad */
li {
visibility: hidden;
}
li:first-child {
visibility: visible;
} /* good */
li + li {
visibility: hidden;
}
继承
不要把可继承的样式重复声明:
/* bad */
div h1, div p {
text-shadow: 0 1px 0 #fff;
} /* good */
div {
text-shadow: 0 1px 0 #fff;
}
简洁
保持代码的简洁。使用属性缩写。不必要的值不用写。
/* bad */
div {
transition: all 1s;
top: 50%;
margin-top: -10px;
padding-top: 5px;
padding-right: 10px;
padding-bottom: 20px;
padding-left: 10px;
} /* good */
div {
transition: 1s;
top: calc(50% - 10px);
padding: 5px 10px 20px;
}
语言
能用英文的时候不用数字。
/* bad */
:nth-child(2n + 1) {
transform: rotate(360deg);
} /* good */
:nth-child(odd) {
transform: rotate(1turn);
}
供应商的前缀
砍掉过时的供应商前缀。必须使用时,需要放在标准属性前:
/* bad */
div {
transform: scale(2);
-webkit-transform: scale(2);
-moz-transform: scale(2);
-ms-transform: scale(2);
transition: 1s;
-webkit-transition: 1s;
-moz-transition: 1s;
-ms-transition: 1s;
} /* good */
div {
-webkit-transform: scale(2);
transform: scale(2);
transition: 1s;
}
动画
除了变形和改变透明度用animation
,其他尽量使用transition
。
/* bad */
div:hover {
animation: move 1s forwards;
}
@keyframes move {
100% {
margin-left: 100px;
}
} /* good */
div:hover {
transition: 1s;
transform: translateX(100px);
}
单位
可以不用单位时就不用。建议用rem
。时间单位用s
比ms
好。
/* bad */
div {
margin: 0px;
font-size: .9em;
line-height: 22px;
transition: 500ms;
} /* good */
div {
margin: 0;
font-size: .9rem;
line-height: 1.5;
transition: .5s;
}
颜色
需要做透明效果是用rgba
,否则都用16进制表示:
/* bad */
div {
color: hsl(103, 54%, 43%);
} /* good */
div {
color: #5a3;
}
绘图
减少HTTPS请求,尽量用CSS绘图替代图片:
/* bad */
div::before {
content: url(white-circle.svg);
} /* good */
div::before {
content: "";
display: block;
width: 20px;
height: 20px;
border-radius: 50%;
background: #fff;
}
注释
/* bad */
div {
// position: relative;
transform: translateZ(0);
} /* good */
div {
/* position: relative; */
will-change: transform;
}
JavaScript
性能
有可读性、正确性和好的表达比性能更重要。JavaScript基本上不会是你的性能瓶颈。有些可优化细节例如:图片压缩、网络接入、DOM文本流。如果你只能记住本指南的一条规则,那就记住这条吧。
// bad (albeit way faster)
const arr = [1, 2, 3, 4];
const len = arr.length;
var i = -1;
var result = [];
while (++i < len) {
var n = arr[i];
if (n % 2 > 0) continue;
result.push(n * n);
} // good
const arr = [1, 2, 3, 4];
const isEven = n => n % 2 == 0;
const square = n => n * n; const result = arr.filter(isEven).map(square);
Statelessness
尽量保持代码功能简单化,每个方法都对其他其他代码没有负影响。不使用外部数据。返回一个新对象而不是覆盖原有的对象。
// bad
const merge = (target, ...sources) => Object.assign(target, ...sources);
merge({ foo: "foo" }, { bar: "bar" }); // => { foo: "foo", bar: "bar" } // good
const merge = (...sources) => Object.assign({}, ...sources);
merge({ foo: "foo" }, { bar: "bar" }); // => { foo: "foo", bar: "bar" }
尽量使用内置方法
// bad
const toArray = obj => [].slice.call(obj); // good
const toArray = (() =>
Array.from ? Array.from : obj => [].slice.call(obj)
)();
严格条件
在非必要严格条件的情况不要使用。
// bad
if (x === undefined || x === null) { ... } // good
if (x == undefined) { ... }
对象
不要在循环里强制改变对象的值,,可以利用array.prototype
方法。
// bad
const sum = arr => {
var sum = 0;
var i = -1;
for (;arr[++i];) {
sum += arr[i];
}
return sum;
}; sum([1, 2, 3]); // => 6 // good
const sum = arr =>
arr.reduce((x, y) => x + y); sum([1, 2, 3]); // => 6
If you can't, or if using array.prototype methods is arguably abusive, use recursion. // bad
const createDivs = howMany => {
while (howMany--) {
document.body.insertAdjacentHTML("beforeend", "<div></div>");
}
};
createDivs(5); // bad
const createDivs = howMany =>
[...Array(howMany)].forEach(() =>
document.body.insertAdjacentHTML("beforeend", "<div></div>")
);
createDivs(5); // good
const createDivs = howMany => {
if (!howMany) return;
document.body.insertAdjacentHTML("beforeend", "<div></div>");
return createDivs(howMany - 1);
};
createDivs(5);
Arguments
忘记arguments
对象吧,其他参数是更好的选择,因为:
- 它已经被定义
它是一个真的数组,很方便使用
// bad
const sortNumbers = () =>
Array.prototype.slice.call(arguments).sort(); // good
const sortNumbers = (...numbers) => numbers.sort();
Apply
忘记apply()
,改用运算操作。
const greet = (first, last) => `Hi ${first} ${last}`;
const person = ["John", "Doe"]; // bad
greet.apply(null, person); // good
greet(...person);
Bind
不用bind()
方法,这有更好的选择:
// bad
["foo", "bar"].forEach(func.bind(this)); // good
["foo", "bar"].forEach(func, this);
// bad
const person = {
first: "John",
last: "Doe",
greet() {
const full = function() {
return `${this.first} ${this.last}`;
}.bind(this);
return `Hello ${full()}`;
}
} // good
const person = {
first: "John",
last: "Doe",
greet() {
const full = () => `${this.first} ${this.last}`;
return `Hello ${full()}`;
}
}
更好的排序
避免多重嵌套:
// bad
[1, 2, 3].map(num => String(num)); // good
[1, 2, 3].map(String);
Composition
避免方法嵌套调用,改用composition
:
const plus1 = a => a + 1;
const mult2 = a => a * 2; // bad
mult2(plus1(5)); // => 12 // good
const pipeline = (...funcs) => val => funcs.reduce((a, b) => b(a), val);
const addThenMult = pipeline(plus1, mult2);
addThenMult(5); // => 12
缓存
缓存性能测试,大数据结构和任何高代价的操作。
// bad
const contains = (arr, value) =>
Array.prototype.includes
? arr.includes(value)
: arr.some(el => el === value);
contains(["foo", "bar"], "baz"); // => false // good
const contains = (() =>
Array.prototype.includes
? (arr, value) => arr.includes(value)
: (arr, value) => arr.some(el => el === value)
)();
contains(["foo", "bar"], "baz"); // => false
变量
const
优于 let
, let
优于 var
。
// bad
var obj = {};
obj["foo" + "bar"] = "baz"; // good
const obj = {
["foo" + "bar"]: "baz"
};
条件判断
用多个if
,优于 if
、else if
、else
和switch
。
// bad
var grade;
if (result < 50)
grade = "bad";
else if (result < 90)
grade = "good";
else
grade = "excellent"; // good
const grade = (() => {
if (result < 50)
return "bad";
if (result < 90)
return "good";
return "excellent";
})();
对象的操作
避免使用for...in
。
const shared = { foo: "foo" };
const obj = Object.create(shared, {
bar: {
value: "bar",
enumerable: true
}
}); // bad
for (var prop in obj) {
if (obj.hasOwnProperty(prop))
console.log(prop);
} // good
Object.keys(obj).forEach(prop => console.log(prop));
使用map
合理使用的情况下,map更强大:
// bad
const me = {
name: "Ben",
age: 30
};
var meSize = Object.keys(me).length;
meSize; // => 2
me.country = "Belgium";
meSize++;
meSize; // => 3 // good
const me = Map();
me.set("name", "Ben");
me.set("age", 30);
me.size; // => 2
me.set("country", "Belgium");
me.size; // => 3
Curry
在别的语言里有Curry的一席之地,但在JS里避免使用。不然会是代码阅读困难。
// bad
const sum = a => b => a + b;
sum(5)(3); // => 8 // good
const sum = (a, b) => a + b;
sum(5, 3); // => 8
可读性
不要使用自以为是的技巧:
// bad
foo || doSomething(); // good
if (!foo) doSomething(); // bad
void function() { /* IIFE */ }(); // good
(function() { /* IIFE */ }()); // bad
const n = ~~3.14; // good
const n = Math.floor(3.14);
代码重用
对写些小型、组件化、可重用的方法。
// bad
arr[arr.length - 1]; // good
const first = arr => arr[0];
const last = arr => first(arr.slice(-1));
last(arr); // bad
const product = (a, b) => a * b;
const triple = n => n * 3; // good
const product = (a, b) => a * b;
const triple = product.bind(null, 3);
依赖
减少第三方库的使用。当你无法完成某项工作时可以使用,但不要为了一些能自己实现的小功能就加载一个很大的库。
// bad
var _ = require("underscore");
_.compact(["foo", 0]));
_.unique(["foo", "foo"]);
_.union(["foo"], ["bar"], ["foo"]); // good
const compact = arr => arr.filter(el => el);
const unique = arr => [...Set(arr)];
const union = (...arr) => unique([].concat(...arr)); compact(["foo", 0]);
unique(["foo", "foo"]);
union(["foo"], ["bar"], ["foo"]);
英文原文 Frontend Guidelines
GitHub 上一份很受欢迎的前端代码优化指南-强烈推荐收藏的更多相关文章
- GitHub 上一份很受欢迎的前端代码优化指南
http://segmentfault.com/a/1190000002587334?utm_source=weekly&utm_medium=email&utm_campaign=e ...
- GitHub 上100个最受欢迎的Java基础类库
作为一名整天与既成熟且不断发展的Java语言打交道的开发者,面对的困境之一就是在我们编写代码的时候,是使用一些人人谈论的人们新技术呢,还是坚持使用一些虽旧但成熟的类库? 由于Java应用中大部分是商业 ...
- Github上关于iOS的各种开源项目集合(强烈建议大家收藏,查看,总有一款你需要)
下拉刷新 EGOTableViewPullRefresh - 最早的下拉刷新控件. SVPullToRefresh - 下拉刷新控件. MJRefresh - 仅需一行代码就可以为UITableVie ...
- GitHub上最火的、最值得前端学习的几个数据结构与算法项目!没有之一!
Hello,大家好,我是你们的 前端章鱼猫. 简介 前端章鱼猫从 2016 年加入 GitHub,到现在的 2020 年,快整整 5 个年头了. 相信很多人都没有逛 GitHub 的习惯,因此总会有开 ...
- 给大家推荐:五个Python小项目,Github上的人气很高的
1.深度学习框架 Pytorch https://github.com/pytorch/pytorch PyTorch 是一个 Torch7 团队开源的 Python 优先的深度学习框架,提供两个高级 ...
- github上所有项目的受欢迎程度排名,包括超大型项目
直接打开如下网址: https://github.com/search?l=Java&q=+stars%3A%3E0&ref=searchresults&type=Reposi ...
- 2019年9月Github上最热门的JavaScript开源项目
2019年9月Github上最热门的JavaScript开源项目 前端开发 前端开发 微信号 qianduan1024 功能介绍 专注于Web前端技术文章分享,包含JavaScript.HTML5 ...
- 在github上最热门好评高的ROS相关功能包
在github上最热门最受欢迎的ROS相关功能包 下面依次列出,排名不分先后: 1 Simulation Tools In ROS https://github.com/ros-simulation ...
- 9 月份 GitHub 上最火的 JavaScript 开源项目!
推荐 GitHub 上9 月份最受欢迎的 10 个 JavaScript 开源项目,在这些项目中,你有在用或用过哪些呢? 1.基于 Promise 的 HTTP 客户端 Axios https://g ...
随机推荐
- 安装了SQL2005再安装SQL 2008R2,提示此计算机上安装了 Microsoft Visual Studio 2008 的早期版本和检查是否安装了 SQL Server 2005 Express 工具的解决方案
工作电脑上安装了SQL 2005, 但是客户电脑上安装的是SQL 2008R2,有时候连接他们的库调试没法连接,很不方便.然后又安装了个SQL2008 R2,期间遇到这两个问题,网上搜索了一下收到了解 ...
- lsattr, chattr
lsattr $lsattr #查看文件的隐藏属性 $lsattr -------------e- ./bookmarks-2016-10-11.json -------------e- ./rxvt ...
- Linux中的SWAP交换分区
大多数 Linux 在系统安装时都会提醒并建议你划分一个 SWAP 交换分区,如果你是从 Windows 切换到 Linux 的新用户,兴许对这个 SWAP 会感到十分疑惑. SWAP 交换分区到底是 ...
- jQuery中大于gt和小于lt
gt,lt计数都是下标从0开始,而且不论大小于,都不包括它自己本身. <!DOCTYPE html> <html> <head> <meta charset= ...
- C 结构体位域
位域 : 有些信息在存储时,并不需要占用一个完整的字节, 而只需占几个或一个二进制位.例如在存放一个开关量时,只有0和1 两种状态, 用一位二进位即可.为了节省存储空间,并使处理简便,C语言又提供了一 ...
- PHP实现文件上传下载——心在忙而已
这一周都没有写什么东西,是啊,一周时间都没有学习太多新的东西,除了开车. 妈蛋啊,天天中午去学车然后两周没有午觉的日子还是很崩溃的,加上之后工作压力带来的心忙,宝宝不开心啊. 不过,也是自己不是那么能 ...
- continue break return的区别
1.continue 语句的作用 终止本次循环的执行,即跳过当前一次循环中continue语句后尚未执行的语句,然后进行下一次循环条件的判断. 2.break 语句的作用 (1)当 ...
- 【Python数据分析】从Web收集数据小实例
最近在看<鲜活的数据:数据可视化指南>,学习一些数据可视化与数据分析的技术,本例是该书第一章的一个例子衍伸而来. 实例内容:从www.wunderground.com收集美国纽约州布法罗市 ...
- Teredo 是一项 IPv6/IPv4 转换技术
Teredo 是一项 IPv6/IPv4 转换技术,能够实现在处于单个或者多个 IPv4 NAT 后的主机之间的 IPv6 自动隧道.来自 Teredo 主机的 IPv6 数据流能够通过 NAT,因 ...
- U3D的飞船太空射击例子中,使用coroutine
coroutine 协同程序与线程差不多,也就是一条执行序列,拥有自己独立的栈,局部变量和指令指针,同时又与其它协同程序共享全局变量和其它大部分东西.线程与协同程序的主要区别在于,一个具有多线程的程序 ...