| word | NA | BR | difference |
|---|---|---|---|
| not | ɑː | ɒ | vowel |
| can't, | æ | ɑː | vowel |
| class, ask, etc | æs | ɑːs | vowel |
| own | oʊ | əʊ | vowel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <table> | |
| tr>th{header}*4 | |
| (tr>td{header}*4)*4 | |
| </table> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function intarvalRAF(fn, delay) { | |
| var obj = { timerId: NaN } | |
| var loop = function(startTime) { | |
| var now = Date.now() | |
| startTime = startTime || now | |
| var curTime = now | |
| , duration = curTime - startTime | |
| if ( delay <= duration) { | |
| fn() | |
| loop(now) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| B's A (A is part of B, A belongs B) | |
| the color of the sky | |
| the capital of Japan | |
| a member of the team | |
| B's A | |
| the property of the residents | |
| families of kidnapped Americans | |
| parents of young children | |
| A = B (general of specific) | |
| a feeling of duty |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| adequate | |
| care | |
| adequate health care | |
| adequate medical care | |
| resources | |
| have adequate resources | |
| lack adequate resources | |
| support | |
| with/out adequate support | |
| receive adequate support |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // example | |
| HHmmssToSeconds("8") | |
| HHmmssToSeconds(":8") | |
| HHmmssToSeconds("1:08") | |
| HHmmssToSeconds("1:8") | |
| HHmmssToSeconds("01:00:08") | |
| HHmmssToSeconds("1:0:8") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| plummet: 急落 くぼみ, へこみ | |
| stumble: 弱まる、くらいの意味で。 つまずく、よろめく。 | |
| plunge: 落ち込み。priceと使われる。the plunge in oil prices | |
| tumble: 急落, 暴落 転ぶ | |
| soar: 高騰, 急騰 舞う, 飛ぶ。 | |
| jump: soarと同じ | |
| an increase in [demand] for [X]. |
料金表、目次などで使われる
タブとリーダー
Dot Leader css
http://www.w3.org/Style/Examples/007/leaders.en.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <iframe srcdoc=" | |
| <!doctype html> | |
| <style> | |
| .multi-border-color { | |
| border-style: solid; | |
| border-image-source: linear-gradient(to right, crimson 15%, #ddd 15% 100%); | |
| border-image-width: 0px 0px 10px 0px; | |
| border-width: 0px 0px 10px 0px; | |
| border-image-slice: 1; | |
| } |