|
| 1 | +<!DOCTYPE HTML> |
| 2 | +<meta charset="utf-8" /> |
| 3 | +<meta name="viewport" content="width=device-width" /> |
| 4 | +<title>xcapy - preview</title> |
| 5 | +<style> |
| 6 | + body { |
| 7 | + font-family: sans-serif; |
| 8 | + } |
| 9 | + |
| 10 | + .ctn { |
| 11 | + width: 900px; |
| 12 | + margin-left: auto; |
| 13 | + margin-right: auto; |
| 14 | + display: flex; |
| 15 | + flex-wrap: wrap; |
| 16 | + gap: 1rem; |
| 17 | + justify-content: center; |
| 18 | + align-items: center; |
| 19 | + } |
| 20 | + |
| 21 | + .box { |
| 22 | + border: 1px solid black; |
| 23 | + padding: 1rem; |
| 24 | + width: 100px; |
| 25 | + height: 100px; |
| 26 | + display: flex; |
| 27 | + justify-content: center; |
| 28 | + align-items: center; |
| 29 | + } |
| 30 | +</style> |
| 31 | +<body> |
| 32 | + <section class="ctn"></section> |
| 33 | +</body> |
| 34 | +<script> |
| 35 | + let ctn = document.querySelector(".ctn"); |
| 36 | + let cursors = ["auto", "default", "none", "context-menu", "help", |
| 37 | + "pointer", "progress", "wait", "cell", "crosshair", |
| 38 | + "text", "vertical-text", "alias", "copy", "move", |
| 39 | + "no-drop", "not-allowed", "grab", "grabbing", |
| 40 | + "all-scroll", "col-resize", "row-resize", "n-resize", |
| 41 | + "e-resize", "s-resize", "w-resize", "ne-resize", |
| 42 | + "nw-resize", "se-resize", "sw-resize", "ew-resize", |
| 43 | + "ns-resize", "nesw-resize", "nwse-resize", "zoom-in", |
| 44 | + "zoom-out"]; |
| 45 | + cursors.forEach((c) => { |
| 46 | + ctn.innerHTML += `<div class="box" style="cursor: ${c};"><span>${c}</span></div>`; |
| 47 | + }); |
| 48 | +</script> |
0 commit comments