- textとの比較
- wordやpdfとの比較
- WYSIWYG
| 種類 | 可 | 否 |
|---|---|---|
| まるバツ | ○ | × |
| アルファベット | o | x |
| Yes/No | Y | N |
| Yes/No | Yes | No |
| 記号 | ✓ | ✗ |
| 記号(太い) | ✔ | ✘ |
| 記号 | ✓ | ✖ |
| 記号 | ✓ | (empty) |
| method | return |
|---|---|
| toFixed | f |
| toPrecision | f, e |
| toExponential | e |
| /*----------------- | |
| * 色に関しては2つだけ | |
| * - color | |
| * - clip | |
| * 残りは画像に適用 | |
| -----------------*/ | |
| .bg { | |
| width: 200px; | |
| height: 200px; |
to insert/change a textNode value, there are 3 ways.
text.data = null
text.nodeValue = undefined
text.textContent = undefinedWhichever method you use, be sure to take a fallback for undefined/null.
| var delayResize = { | |
| delays: [300, 600, 900], | |
| timers: [], | |
| clearAlltimers: function() { | |
| var l = this.timers.length | |
| for(var i=0; i<l; i++){ | |
| clearTimeout(this.timers[i]) | |
| } | |
| }, | |
| dispachEv: function(e){ |
add tags/attributes.
[snippet],[css],[dropdown]
| http://readingmonkey.blog45.fc2.com/blog-entry-674.html |