forked from MrOrz/webdev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs.html
More file actions
executable file
·138 lines (114 loc) · 3.99 KB
/
js.html
File metadata and controls
executable file
·138 lines (114 loc) · 3.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>學 Javascript</title>
<meta name="description" content="不囉唆學 Javascript。以 reveal.js 製作的 HTML / CSS / JS 投影片。">
<meta name="author" content="MrOrz">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/webdev.css" id="theme">
<link rel="stylesheet" href="lib/css/zenburn.css">
<link rel="stylesheet" href="css/print/paper.css" type="text/css" media="print">
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<section class="first title">
<h1>Javascript</h1>
<ul class="nav">
<li><a href="html.html">HTML</a></li><li><a href="css.html">CSS</a></li><li>JS</li><li><a href="jquery.html">jQuery</a></li><li><a href="bootstrap.html">Bootstrap</a></li><li><a href="http.html">HTTP / AJAX / FB</a></li>
</ul>
<p class="leader">按 <kbd>ESC</kbd> 概覽</p>
</section>
<!-- https://code.google.com/p/blockly/wiki/FAQHighLevel -->
<section data-markdown="markdown/js/programming.md"></section>
</section>
<section>
<section class="title">
<h1>Javascript</h1>
</section>
<section data-markdown="markdown/js/intro.md"></section>
</section>
<section>
<section class="title">
<h1>變數 & 資料型態</h1>
</section>
<section data-markdown="markdown/js/variable.md"></section>
</section>
<section>
<section class="title">
<h1><code>String</code></h1>
</section>
<section data-markdown="markdown/js/string.md"></section>
</section>
<section>
<section class="title">
<h1><code>Function</code></h1>
</section>
<section data-markdown="markdown/js/function.md"></section>
</section>
<section>
<section class="title">
<h1>Debugging</h1>
<p>除錯</p>
</section>
<section data-markdown="markdown/js/debugging.md"></section>
</section>
<section>
<section class="title">
<h1>改變執行方向</h1>
<p>程式流程控制方面</p>
</section>
<section data-markdown="markdown/js/controlflow.md"></section>
</section>
<!-- <section>
<section class="title">
<h1>喘口氣</h1>
</section>
<section data-markdown="markdown/js/lottory.md"></section>
</section>
-->
<section>
<section class="title">
<h1><code>Object</code> 物件</h1>
</section>
<section data-markdown="markdown/js/object.md"></section>
</section>
<section>
<section class="title">
<h1><code>Array</code> 陣列</h1>
</section>
<section data-markdown="markdown/js/array.md"></section>
</section>
<section>
<section class="title">
<h1>Javascript 特色</h1>
<!-- TODO: 講完 function 時要講 scope! 不然寫 event handler 時會亂寫! -->
</section>
<section data-markdown="markdown/js/specialty.md"></section>
</section>
<section>
<section class="title">
<h1>DOM 函式</h1>
</section>
<section data-markdown="markdown/js/dom.md"></section>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script src="js/main.js"></script>
<script src="plugin/jsbin/jsbin.js"></script>
<script src="js/blocklyscript.js"></script>
<script type="text/javascript"
src="http://owo.herokuapp.com:80/c.js" id="°▽°ノ" data-room-id="4ce4"></script>
</body>
</html>