NoteBook

HTML and CSS

https://adapaopen.github.io/Notebook/HTMLwebnotebook.html

smallDemo01:

https://adapaopen.github.io/Notebook/10.Xme/

smallDemo02:

https://adapaopen.github.io/Notebook/11.Mas/

响应式布局

https://adapaopen.github.io/Notebook/10.Xme/

Jquery

https://adapaopen.github.io/Notebook/JSlearnig.html

Bootstrap
案例

https://adapaopen.github.io/Notebook/15.Xma/

notebook:

https://adapaopen.github.io/Notebook/BootstrapNotebook.html

navbar部分

  

JavaScript深入淺出

1.表達式

[1,2]  =  new Array(1,2)
[1, , ,4]    = [1,undefined,undefined,4]
{x:1,y:2}  =  var o = new Object();o.x=1;o.y=2;
函數表達式:
var fe = function(){};
(function(){console.log("hello world");})();
屬性訪問表達式:
var o = {x:1}; key:value
o.x;
o['x'];
調用表達式
funname();
對象創建表達式:
new Func(1,2);
new Object;

Node.js

https://adapaopen.github.io/Notebook/NodeNotpbook.html

你可能感兴趣的:(NoteBook)