Skip to content

Instantly share code, notes, and snippets.

@u88803494
u88803494 / TDZ.js
Created June 5, 2019 03:04
Temporal Dead Zone test
function test() {
let a = 1;
function test2() {
let a //TDZ start
efmw //TDZ
oirkpo //TDZ
wo,prd32k //TDZ
cssp //TDZ
console.log(a) //TDZ
a = 10; //TDZ end
@u88803494
u88803494 / TDZ.js
Created June 5, 2019 03:08
TDZ test
function test() {
let a = 1;
function test2() {
let a //TDZ start
console.log(a) //TDZ
a = 10;//TDZ end
}
test2();
}
test();
@u88803494
u88803494 / index.html
Created June 11, 2019 13:05
[Week7] hw2 index.html 模擬一個 Google 表單出來
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="./style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title> [Week7]hw2_仿 Google 表單_hugh </title>
</head>
@u88803494
u88803494 / style.css
Last active June 11, 2019 13:19
[Week7] hw2 CSS初始設定,邊框以方便辨識
body {
margin:0px;
font-family: "微軟正黑體";
}
.background__picture {
background:url("./pic.png") no-repeat top center;
background-size: cover;
height:260px;
@u88803494
u88803494 / index.html
Last active June 12, 2019 08:00
[Week7] hw2 HTML骨架
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="./style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title> [Week7]hw2_仿 Google 表單_hugh </title>
</head>
@u88803494
u88803494 / style.css
Created June 12, 2019 07:37
[Week7]hw2 CSS樣式
body {
margin:0px;
font-family: "微軟正黑體";
background: #FFCCCC68;
}
.background__picture {
background:url("./pic.png") no-repeat top center;
background-size: cover;
@u88803494
u88803494 / index.js
Created June 12, 2019 11:28
[Week7] hw2 JS的選擇器測試
// 先監視按鈕好了
const btn = document.querySelector('.form__content--submit');
// eslint-disable-next-line no-use-before-define
btn.addEventListener('click', test);
function test() {
const email = document.querySelector('#email').value;
alert(`你的eamil是 ${email}`);
const nickname = document.querySelector('#nickname').value;
alert(`你的nickname是 ${nickname}`);
@u88803494
u88803494 / index.html
Last active June 14, 2019 07:01
[Week7] hw3 計算機
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="./style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title> [Week7] hw3_計算機_hugh </title>
</head>
@u88803494
u88803494 / style.css
Created June 14, 2019 06:57
[Week7] hw3_計算機 介面刻完了
body {
font-family: sans-serif;
}
.board {
max-width:430px;
position: absolute;
top: 100px;
left: 0;
right: 0;