<< First emmet install >>
1. install sublime package
2. Ctl+shift+P
3. install package(remove package if need)
4. select emmet
Robert 發表在 痞客邦 留言(0) 人氣(5)
Brackets 插件
Beautify : 排列HTML, CSS, and JavaScript整齊
Brackets CSS Class Code hint : use the relevant classes of bootstrap
Brackets File Icons : adds file icons to the brackets file tree.
Brackets Git : 把 git 整合到 brackets 裡面
Custom Work : Adds toolbar it include buttons show/hide with tabs of active documents on the top of the editor.
Emmet : 通過內容輔助高速度的編寫和編輯HTML,XML,XSL和其他結構化的代碼格式
HTML Designer for Brackets : CodeView
HTML Templates, Updated : Brackets HTML Templates extension
W3C Validation (by Umoxfo) : A Brackets extension to enable W3C validation support
Robert 發表在 痞客邦 留言(0) 人氣(23)
MEAT items
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
Robert 發表在 痞客邦 留言(0) 人氣(21)
FROM
==========================================
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bootstrap Layouts</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
</body>
</html>
==========================================
Robert 發表在 痞客邦 留言(0) 人氣(24)
Creating Table
CREATE TABLE books (id INTEGER PRIMARY KEY, name TEXT, rating INTEGER) ;
CREATE TABLE exercise_logs (id INTEGER PRIMARY KEY AUTOINCREMENT,
type TEXT, minutes INTEGER,
calories INTEGER, heart_rate INTEGER);
Robert 發表在 痞客邦 留言(0) 人氣(16)
check webpage load complete then run jQuery
$(document).ready(function() {
crocodilize();
});
Robert 發表在 痞客邦 留言(0) 人氣(4)
convert your variables into jQuery collections and HTML DOC nodes
var headingFromD = document.getElementById("cuteness"); // DOM node
headingFromD.innerHTML = "Setting .innerHTML";
var $heading = $("#cuteness"); // jQuery collection
$heading.html("Using jQuery again!");
var headingD = $heading[0]; //convert jQuery collection to DOM node
var $headingJ = $(headingD); //convert DOM node to jQuery collection
Robert 發表在 痞客邦 留言(0) 人氣(6)
var xhr = new XMLHttpRequest();
xhr.open('get', "http://www.tpml.edu.tw/") ;
xhr.send() ;
xhr.onload = function() {
console.log(xhr.responseText) ;
}
Robert 發表在 痞客邦 留言(0) 人氣(12)
Robert 發表在 痞客邦 留言(0) 人氣(1,091)

chrome 實驗功能設定 : chrome://flags/
允許開發實驗功能設定
Robert 發表在 痞客邦 留言(0) 人氣(44)