首页javascriptdrawing_settingsCanvas - 如何悬停以更改填充样式

Canvas - 如何悬停以更改填充样式

我们想知道如何悬停以更改填充样式。


<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type='text/javascript'>//<![CDATA[ 
$(window).load(function(){
    var ctx = document.getElementById('canvas').getContext('2d');
    ctx.stroke = "red";
    ctx.beginPath();
    ctx.moveTo(30, 30);
    ctx.lineTo(150, 150);
    ctx.bezierCurveTo(60, 70, 60, 70, 70, 150);
    ctx.lineTo(30, 30);
    ctx.fillStyle = 'black';
    ctx.fill();
    $('#canvas').hover( function() {
            ctx.fillStyle = 'red';
            ctx.fill();
        },
        function() {
            ctx.fillStyle = 'black';
            ctx.fill();         
    });
});//]]>  
</script>
</head>
<body>
  <canvas id='canvas'></canvas>
</body>
</html>