1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> .bkg { position: absolute; z-index: 0; background-image: url('./img/02.png'); background-repeat: none; background-size: 100% 100%; overflow-x: scroll; overflow-y:auto; top: 2rem; } #mycanvas { top: 2rem; position: absolute; z-index: 1; } .clearSelect { float: right; } canvas { border: 1px solid green; } </style> </head> <body> <button class="clearSelect" id="clearSelect">清除选中</button> <button class="clearSelect" id="click-select">点击选择</button> <button class="clearSelect" id="null-select">释放点选</button> <div class="bkg"> </div> <canvas id="mycanvas" ></canvas> </body> <script type="text/javascript"> let w = 3810; let h = 900; let blue = 'blue';
let arrObj = []; let count = 0; mycanvas.width = w; mycanvas.height = h; let bkg = document.getElementsByClassName('bkg')[0]; bkg.style.width = w+'px'; bkg.style.height = h+'px';
let ctx = mycanvas.getContext('2d'); reset(); restore(); function reset() { let val = localStorage.getItem('key'); if ( localStorage.length === 0) { console.log('请先选点'); } else { let arr = []; arr = JSON.parse(val); arrObj = arr;
for (let i = 0; i < arr.length; i++) { for ( let h in arr[i]) { ctx.beginPath(); ctx.fillStyle = blue; ctx.rect(arr[i][h].x,arr[i][h].y,20,20); ctx.fill(); } } } }
var clickSelect = document.getElementById('click-select'); var nullSelect = document.getElementById('null-select');
clickSelect.onclick = function () { move(); }; nullSelect.onclick = function () { mycanvas.onclick = null; restore() } clearSelect.onclick = function() { clearDraw(); }
function clearDraw() { ctx.clearRect(0,0,w,h); localStorage.clear(); arrObj = []; count = 0; }
function restore() { mycanvas.onclick = function(e) { state(e,function(info) { fillText({ x:info.point.x, y:info.point.y, ctx:ctx, info:info.info }) })
setTimeout (()=>{ ctx.clearRect(0,0,w,h); reset(); },1000) }
mycanvas.ondblclick = function (e) { state(e,function(info) { alert(`我是第${info.count}个执行点`); });
}; }
function move() {
mycanvas.onclick = function (e) { count++; let info = textInfo(); let x = e.offsetX; let y = e.offsetY; ctx.beginPath(); ctx.fillStyle = blue; ctx.rect(x,y,20,20); ctx.fill(); console.log(x,y,'标记点');
let str = `{point:{x:${x},y:${y}},count:${count},info:'${info}'}`; arrObj.push(eval('(' + str + ')'));
localStorage.setItem('key',JSON.stringify(arrObj)); ; setTimeout(()=> { console.log(`你选中的第${count}个标记点为${x},${y}`) },100) } }
function textInfo() { let text = prompt("请输入",''); if (text !== null || text!== '') { return text; } }
function fillText({ctx,info,x,y}) { ctx.beginPath(); ctx.fillStyle = 'red'; ctx.font="20px Georgia"; ctx.fillText(info,x,y); }
function state(e,cb) { let x = e.offsetX; let y = e.offsetY; let pointX,pointY,info;
for ( let i = 0; i < arrObj.length;i++ ) { info = arrObj[i]; pointX = arrObj[i].point.x; pointY = arrObj[i].point.y; if ( x >= pointX && x <= (pointX + 20) && y >= pointY && y <= (pointY + 20) ) { cb(info); } else { console.log('你点击到了空白区域') } } }
</script> </html>
|