求教高手,HTML连线题怎样制作?
发布网友
发布时间:2024-10-01 22:40
我来回答
共2个回答
热心网友
时间:2024-10-17 18:01
用canvas实现,可以实现。划线的位置 你自己调调。还有对象创建
canvas = $('#myCanvas')[0];
ctx = canvas.getContext('2d');
// 画出左边到右边的连接
linkWith: function(ctxx, leftIndex, rightIndex) {
console.log("link "+leftIndex+" with "+rightIndex);
ctxx.beginPath();
ctxx.moveTo(0.5,(2*leftIndex-1)*cellHeight + 0.5);
ctxx.lineWidth=1;
ctxx.lineTo(canvasWidth +0.5,(2*rightIndex-1)*cellHeight + 0.5);
ctxx.stroke();
ctxx.closePath();
},
热心网友
时间:2024-10-17 18:04
很难实现 你也在做考试系统