我对这个Canvas元素完全陌生。我能够在画布上绘制线条,但不能仅清除特定线条。整个画布变得空白。
试过这个: 的 HTML:
<canvas id="cvs" width="400" height="400"></canvas>
<hr />
<input type="submit" id="reDrowA" value="Draw A" />
<input type="submit" id="reDrowB" value="Draw B" />
<hr />
<input type="submit" id="clearA" value="Clear A" />
<input type="submit" id="clearB" value="Clear B" />
脚本
$(document).ready(function(){
canvas = document.getElementById("cvs");
$("#reDrowA").on("click",function(){
a = canvas.getContext('2d');
a.translate(0.5, 0.5);
a.beginPath();
a.setLineDash([2,10]);
a.moveTo(10,10);
a.lineTo(300,10);
a.lineTo(300,300);
a.stroke();
});
$("#reDrowB").on("click",function(){
b = canvas.getContext('2d');
b.translate(0.5, 0.5);
b.beginPath();
b.setLineDash([2,10]);
b.moveTo(10,10);
b.lineTo(10,300);
b.lineTo(300,300);
b.stroke();
});
$("#clearA").on("click",function(){
a.clearRect(0, 0, canvas.width, canvas.height);
});
$("#clearB").on("click",function(){
b.clearRect(0, 0, canvas.width, canvas.height);
});
});
答案 0 :(得分:10)
关于Canvas,Canvas'元素'以及`elements'的可见性......
当画布上的任何元素需要更改(移动,擦除等)时,标准方法是完全擦除画布并使用新位置中的元素重绘画布(或者如果元素被删除则不重绘元素)。
那是因为canvas不会“记住”它绘制任何单个元素的位置,因此无法单独移动或擦除任何元素。
在画布被删除后,您需要“记住”有关要重绘的元素的足够信息。
演示:http://jsfiddle.net/m1erickson/Wrk2e/
因此,在您的示例中,您可以创建javascript对象a
和b
来表示您的右上角和左下角线路。
每个对象都有定义其行路径的点和一个标志,指示它是否可见(在画布上可见==重绘)。
// create an object containing the top-right lines
// the object contains its path points & if it is visible or not
var a={
path:[10,10, 300,10, 300,300],
isVisible:false,
}
// create an object containing the left-bottom lines
// the object contains its path points & if it is visible or not
var b={
path:[10,10, 10,300, 300,300],
isVisible:false,
}
为了便于处理,您可以将所有行路径对象放在一个数组中:
// an array containing all the line-path objects
var myObjects=[a,b];
然后当您清除画布时,只需使用每个对象的行 - 路径信息来重绘该行。如果特定对象可见性标志为false
,则不要重绘该特定对象。
// clear the entire canvas
// redraw any line-paths that are visible
function redrawAll(myObjects){
context.clearRect(0,0,canvas.width,canvas.height);
for(var i=0;i<myObjects.length;i++){
if(myObjects[i].isVisible){
drawLinePath(myObjects[i]);
}
}
}
// redraw 1 line-path
function drawLinePath(theObject){
var points=theObject.path;
// save the current untranslated context state
context.save();
// draw lines through each point in the objects path
context.translate(0.5, 0.5);
context.beginPath();
context.setLineDash([2,10]);
context.moveTo(points[0],points[1]);
for(var i=2;i<points.length;i+=2){
context.lineTo(points[i],points[i+1]);
}
context.stroke();
// restore the context to its untranslated state
context.restore();
}
完成所有这些后,您的按钮只会更改特定线路径对象上的可见性标记,然后清除/重绘整个画布。
// use buttons to set & clear the visibility flags on objects
// In all cases, clear the entire canvas and redraw any visible objects
$("#reDrowA").on("click",function(){
a.isVisible=true;
redrawAll(myObjects);
});
$("#reDrowB").on("click",function(){
b.isVisible=true;
redrawAll(myObjects);
});
$("#clearA").on("click",function(){
a.isVisible=false;
redrawAll(myObjects);
});
$("#clearB").on("click",function(){
b.isVisible=false;
redrawAll(myObjects);
});
答案 1 :(得分:3)
Canvas是透明的。 acheive in single canvas tag
是不可能的。因为要根据宽度和高度清除clearRect
功能。我们没有给出清除画布的确切位置。试试小提琴。你用两个canvas标签来实现这个场景。
答案 2 :(得分:0)
清除Canvas后,您必须保持re-paint the lines
。
也许是这样的:
http://jsfiddle.net/8YNvu/10/