“Nehmen Sie ein Screenshot JavaScript von Leinwand” Code-Antworten

Nehmen Sie ein Screenshot JavaScript von Leinwand

<a href="%dataURI%" download>download</a>
Fine Fox

Nehmen Sie ein Screenshot JavaScript von Leinwand

<!DOCTYPE HTML>
<html>
  <head>
    <style>
      body {
        margin: 0px;
        padding: 0px;
      }
    </style>
  </head>
  <body>
    <canvas id="myCanvas" width="578" height="200"></canvas>
    <script>
      var canvas = document.getElementById('myCanvas');
      var context = canvas.getContext('2d');

      // draw cloud
      context.beginPath();
      context.moveTo(170, 80);
      context.bezierCurveTo(130, 100, 130, 150, 230, 150);
      context.bezierCurveTo(250, 180, 320, 180, 340, 150);
      context.bezierCurveTo(420, 150, 420, 120, 390, 100);
      context.bezierCurveTo(430, 40, 370, 30, 340, 50);
      context.bezierCurveTo(320, 5, 250, 20, 250, 50);
      context.bezierCurveTo(200, 5, 150, 20, 170, 80);
      context.closePath();
      context.lineWidth = 5;
      context.fillStyle = '#8ED6FF';
      context.fill();
      context.strokeStyle = '#0000ff';
      context.stroke();

      // save canvas image as data url (png format by default)
      var dataURL = canvas.toDataURL();
    </script>
  </body>
</html>
Fine Fox

Ähnliche Antworten wie “Nehmen Sie ein Screenshot JavaScript von Leinwand”

Fragen ähnlich wie “Nehmen Sie ein Screenshot JavaScript von Leinwand”

Weitere verwandte Antworten zu “Nehmen Sie ein Screenshot JavaScript von Leinwand” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen