Added QFT
This commit is contained in:
24
output/qft/sketch06/m.html
Normal file
24
output/qft/sketch06/m.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html><html><head><meta charset="utf-8">
|
||||
<style>html,body{margin:0;background:#222}.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;padding:10px;width:2400px}figure{margin:0;position:relative;background:#fff;overflow:hidden}img{width:100%;display:block}figcaption{position:absolute;left:0;bottom:0;right:0;padding:6px 10px;font:13px ui-monospace,monospace;color:#fff;background:linear-gradient(transparent,#000d)}</style></head><body>
|
||||
<div class="grid" id=g></div><script>
|
||||
const items=[
|
||||
["A1_cubic-origin-far-right.svg","A1 cubic origin off-right"],
|
||||
["A2_cubic-zoom-toward-viewer.svg","A2 cubic zoomed (inside)"],
|
||||
["A3_cubic-origin-upper-left.svg","A3 cubic origin upper-left"],
|
||||
["B1_three-rosettes-horizontal.svg","B1 3 rosettes horizontal"],
|
||||
["B2_triangular-rosette-cluster.svg","B2 triangle cluster"],
|
||||
["B3_five-rosettes-quincunx.svg","B3 quincunx (5)"],
|
||||
["B4_central-large-plus-orbit.svg","B4 big + orbit"],
|
||||
["C1_lighter-on-deep-cream.svg","C1 lighter · deep cream"],
|
||||
["C2_lighter-on-warm-grey.svg","C2 lighter · warm grey"],
|
||||
["C3_lighter-on-sage.svg","C3 lighter · sage"],
|
||||
["D1_thick-white-on-cream.svg","D1 thick white · cream"],
|
||||
["D2_white-on-pale-rose.svg","D2 white · pale rose"],
|
||||
["D3_white-on-pale-blue.svg","D3 white · pale blue"],
|
||||
["E1_schlegel-thin-nested.svg","E1 schlegel · deep nested"],
|
||||
["E2_schlegel-shifted-axis-thick.svg","E2 schlegel · shifted axis"],
|
||||
["E3_dual-schlegels-rotated.svg","E3 schlegel · large bleed"],
|
||||
];
|
||||
const base="http://localhost:8731/output/qft/sketch06/";const g=document.getElementById('g');
|
||||
for(const[f,c]of items){const fig=document.createElement('figure');const im=document.createElement('img');im.src=base+f;const cap=document.createElement('figcaption');cap.textContent=c;fig.append(im,cap);g.append(fig);}
|
||||
</script></body></html>
|
||||
Reference in New Issue
Block a user