MiniLab:修订间差异
来自 LNN的:not(博客)?
更多操作
小无编辑摘要 |
→audio player: new section |
||
| 第40行: | 第40行: | ||
text.onblur = function () { myDiv.innerHTML = text.value } | text.onblur = function () { myDiv.innerHTML = text.value } | ||
;[][[]] | ;[][[]] | ||
</source> | |||
=== audio player === | |||
<source lang=javascript> | |||
var fu = null | |||
var fi = document.body.appendChild(document.createElement('input')) | |||
fi.type = "file" | |||
fi.onchange = function () { | |||
if (fu) window.URL.revokeObjectURL(fu) | |||
a.src = fu = window.URL.createObjectURL(fi.files[0]) | |||
} | |||
var a = document.body.appendChild(document.createElement('audio')) | |||
a.controls = true | |||
</source> | </source> | ||
[[分类:存档]] | [[分类:存档]] | ||
2021年10月9日 (六) 20:16的版本
<!DOCTYPE html>
<html>
<head>
<meta name=viewport content="width=device-width,initial-scale=1">
<title>miniLab</title>
</head>
<body>
<textarea
id=codebox
autocapitalize=off
spellcheck=false
onblur="
try {
alert(eval(this.value))
} catch (e) {
alert(e)
}"
style="width: 100%; height: 25rem"
></textarea>
</body>
</html>Data URL:
data:text/html;,<!DOCTYPE%20html><html><head><meta%20name=viewport%20content=%22width=device-width,initial-scale=1%22><title>miniLab</title></head><body><textarea%20id=codebox%20autocapitalize=off%20spellcheck=false%20onblur=%22try%7Balert(eval(this.value))%7Dcatch(e)%7Balert(e)%7D%22%20style=%22width:100%25;height:25rem%22%3E%3C/textarea%3E</body></html>
Snippets
myDiv
this.value = ""
window.text = document.body.appendChild(this.cloneNode())
window.myDiv = document.body.appendChild(document.createElement("div"))
text.onblur = function () { myDiv.innerHTML = text.value }
;[][[]]audio player
var fu = null
var fi = document.body.appendChild(document.createElement('input'))
fi.type = "file"
fi.onchange = function () {
if (fu) window.URL.revokeObjectURL(fu)
a.src = fu = window.URL.createObjectURL(fi.files[0])
}
var a = document.body.appendChild(document.createElement('audio'))
a.controls = true