Heim > Web-Frontend > HTML-Tutorial > „Auswahl-/Drag-and-Drop-Funktionalität in HTML5 Canvas- und JS-Bibliotheken?'

„Auswahl-/Drag-and-Drop-Funktionalität in HTML5 Canvas- und JS-Bibliotheken?'

WBOY
Freigeben: 2023-09-02 11:13:02
nach vorne
1118 Leute haben es durchsucht

"HTML5 Canvas和JS库中的选择/拖放功能?"

Wenn Sie HTML5-Canvas zum Zeichnen von Formen, Text und Kurven verwenden und außerdem traditionelle DOM-Ereignisse wie onClick oder Drag-and-Drop-Funktionen anhängen möchten, können Sie für Drag-and-Drop-Vorgänge oder das Crossbar-Framework Raphael verwenden Berührungsereignisse.

Diese Technik verwendet SVG und XML für ältere IE-Versionen. Drag-and-Drop mit HTML wird unten gezeigt.

Beispiel

<!DOCTYPE html>
<html lang = "en">
   <head>
      <meta charset = "utf-8">
         <title>Rapha&euml;l &middot; Drag-n-drop</title>
         <link rel = "stylesheet" href = "demo.css" type = "text/css" media = "screen">
         <meta name = "apple-mobile-web-app-capable" content = "yes">
         <link rel = "apple-touch-icon-precomposed" href = "/Raphael.png">
         <link rel = "stylesheet" href = "demo-print.css" type = "text/css" media = "print">
         <script src = "raphael.js"></script>
         <script>
            window.onload = function () {
               var R = Raphael(0, 0, "100%", "100%"),
               r = R.circle(100, 100, 50).attr({fill: "hsb(0, 1, 1)", stroke: "none", opacity: .5}),
               g = R.circle(210, 100, 50).attr({fill: "hsb(.3, 1, 1)", stroke: "none", opacity: .5}),
               b = R.circle(320, 100, 50).attr({fill: "hsb(.6, 1, 1)", stroke: "none", opacity: .5}),
               p = R.circle(430, 100, 50).attr({fill: "hsb(.8, 1, 1)", stroke: "none", opacity: .5});
            var start = function () {
               this.ox = this.attr("cx");
               this.oy = this.attr("cy");
               this.animate({r: 70, opacity: .25}, 500, ">");
            },
            move = function (dx, dy) {
               this.attr({cx: this.ox + dx, cy: this.oy + dy});
            },
            up = function () {
               this.animate({r: 50, opacity: .5}, 500, ">");
            };
            R.set(r, g, b, p).drag(move, start, up);
         };
      </script>
   </head>
   <body>
      <div id = "holder"></div>
      <p id = "copy">Demo of <a href = "http://raphaeljs.com/">Rapha&euml;l</a>&mdash; JavaScript Vector Library</p>
   </body>
</html>
Nach dem Login kopieren

Das obige ist der detaillierte Inhalt von„Auswahl-/Drag-and-Drop-Funktionalität in HTML5 Canvas- und JS-Bibliotheken?'. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:tutorialspoint.com
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage