Skip to content

Commit 754dd5d

Browse files
committed
docsify 渲染成网站
1 parent 916e358 commit 754dd5d

24 files changed

+3167
-12
lines changed

.gitignore

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,32 @@
1-
todo.md
1+
lib-cov
2+
*.seed
3+
*.log
4+
*.csv
5+
*.dat
6+
*.out
7+
*.pid
8+
*.gz
9+
*.swp
10+
11+
pids
12+
logs
13+
results
14+
tmp
15+
16+
#Build
17+
public/css/main.css
18+
19+
# API keys and secrets
20+
.env
21+
22+
# Dependency directory
23+
node_modules
24+
bower_components
25+
26+
# Editors
27+
.idea
28+
*.iml
29+
30+
# OS metadata
31+
.DS_Store
32+
Thumbs.db

.nojekyll

Whitespace-only changes.

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fe.padding.me

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
这里将收集我做过的所有的前端面试笔试题,并根据自己的理解提供解答,以及一些关于前端找工作方面的经验等。我将持续更新和维护该仓库,更欢迎你和我一起来维护:smile:
1+
这里将收集我做过的所有的前端面试笔试题,并根据自己的理解提供解答,以及一些关于前端找工作方面的经验等。我将持续更新和维护该仓库,更欢迎你和我一起来维护:smile::smile::smile:
22

33
欢迎拍砖,一起刷题,涨姿势,get新技能,找到好工作。
44

5-
用不了多久你就能升职、加薪,当上总经理,出任CEO,赢取白富美,走上人生巅峰,想想是不是还有点小激动呢?
5+
<a target='_blank' rel='nofollow' href='https://app.codesponsor.io/link/dNi76fLkGGXZ8SdoDsJnDuDS/paddingme/Front-end-Developer-Interview-Questions'>
6+
<img alt='Sponsor' width='888' height='68' src='https://app.codesponsor.io/embed/dNi76fLkGGXZ8SdoDsJnDuDS/paddingme/Front-end-Developer-Interview-Questions.svg' />
7+
</a>
68

7-
下面是更新列表:
89

910
## 前端笔试面试题部分
1011

@@ -51,10 +52,3 @@
5152
|09|[如何在面试中识别一个坏老板](http://get.jobdeer.com/6384.get/)|[Heather Huhman](https://www.linkedin.com/today/post/article/20140930113457-10999323-how-to-spot-a-bad-boss-during-a-job-interview)|面试|2014年11月17日|
5253
|10|[谈谈面试与面试题](https://github.com/wintercn/blog/issues/4)| [wintercn](https://github.com/wintercn)|面试|2015年01月09日|
5354
|11|[【web前端面试题整理08】说说最近几次面试(水)](http://www.cnblogs.com/yexiaochai/p/4366051.html)| [叶小钗](http://weibo.com/yiquinian)|面试|2015年03月30日|
54-
55-
56-
---
57-
58-
推荐下[阅乎](http://yuehu.io)这个阅读体验灰常好的网站,我在这里收集了很多前端方面比较好的文章。
59-
**地址请戳:[菜鸟前端成长之路](http://yuehu.io/padding-me)**
60-

_sidebar.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
- [前端面试题](/questions/)
2+
- [FEWDQ CSS](/questions/1)
3+
- [FEWDQ HTML](/questions/2)
4+
- [FEX 面试题](/questions/3)
5+
- [常见问题](/questions/4)
6+
- [HTML 相关问题](/questions/5)
7+
- [CSS 相关问题](/questions/6)
8+
- [JS 相关问题](/questions/7)
9+
- [jQuery 相关问题](/questions/8)
10+
- [CSS 相关问题](/questions/9)
11+
- [代码相关问题](/questions/10)
12+
- [有趣的问题](/questions/11)
13+
14+
- [前端面经](/interview/)
15+
- [面试前端工程师](/interview/interview)
16+
- [Web前端程序员简历模板](/interview/resume)

index.html

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>前端开发面试集锦</title>
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7+
<meta name="description" content="Description">
8+
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
9+
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
10+
</head>
11+
<body>
12+
<nav>
13+
<a href="#/interview/">面经</a>
14+
<a href="#/questions/">笔试题</a>
15+
</nav>
16+
<div id="app"></div>
17+
</body>
18+
<script>
19+
window.$docsify = {
20+
loadSidebar: true,
21+
repo: 'https://github.com/paddingme/Front-end-Web-Development-Interview-Question',
22+
subMaxLevel: 2,
23+
maxLevel: 2,
24+
mergeNavbar: true,
25+
formatUpdated: '{MM}/{DD} {HH}:{mm}',
26+
ga: 'UA-50048801-2',
27+
// codesponsor: 'id',
28+
search: {
29+
maxAge: 86400000, // 过期时间,单位毫秒,默认一天
30+
paths: auto, // or 'auto'
31+
placeholder: '搜索',
32+
noData: '找不到结果!',
33+
// 搜索标题的最大程级, 1 - 6
34+
// depth: 3
35+
},
36+
plugins: [
37+
function(hook, vm) {
38+
hook.beforeEach(function(html) {
39+
var url = 'https://github.com/paddingme/Front-end-Web-Development-Interview-Question/blob/master/' + vm.route.file
40+
var editHtml = '[:memo: 编辑文档](' + url + ')\n'
41+
42+
return html
43+
+ '\n----\n'
44+
+ '最后更新于 {docsify-updated} '
45+
+ editHtml
46+
})
47+
48+
var footer = [
49+
'<hr/>',
50+
'<footer>',
51+
'<span><a href="https://github.com/paddingme">PaddingMe</a> &copy;2017.</span>',
52+
'<span>Proudly published with <a href="https://github.com/QingWei-Li/docsify" target="_blank">docsify</a>.</span>',
53+
'</footer>'
54+
].join('')
55+
56+
hook.afterEach(function(html) {
57+
return html + footer
58+
})
59+
}
60+
]
61+
}
62+
</script>
63+
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
64+
<script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
65+
<!--<script src="//unpkg.com/docsify/lib/plugins/zoom-image.js"></script>-->
66+
<script src="//unpkg.com/docsify/lib/plugins/codesponsor.min.js"></script>
67+
<script>
68+
if (typeof navigator.serviceWorker !== 'undefined') {
69+
navigator.serviceWorker.register('sw.js')
70+
}
71+
</script>
72+
</html>

interview/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# 前端面经部分

前端面经/interview.md renamed to interview/interview.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# 面试前端工程师
2+
13
12月30日 2013年,作者 Alex MacCaw, 翻译:myownghost
24

35

@@ -155,4 +157,4 @@
155157
当然这些问题只能覆盖前端一点点的知识的,还有很多其他的方面你有可能会问到,像性能,HTML5 API, AMD和CommonJS模块模型,构造函数(constructors),类型和盒子模型(box model)。根据侯选人的情况,我经常会随机提些问题。
156158

157159

158-
原文地址: [blog.sourcing.io](http://blog.sourcing.io/interview-questions?utm_source=ourjs.com)
160+
原文地址: [blog.sourcing.io](http://blog.sourcing.io/interview-questions?utm_source=ourjs.com)
File renamed without changes.

0 commit comments

Comments
 (0)