1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <title>Raphael 快速开始</title> <script src="raphael.min.js"></script> </head> <body> <div id="view"></div> <script> const paper = Raphael('view', 300, 200); let circle = paper.circle(150, 100, 50); circle.attr('fill', 'red'); circle.click(function (pointerEvent , x, y) { if (this.attr('fill') === 'red') { this.attr('fill', 'blue'); } else { this.attr('fill', 'red'); } }); </script> </body> </html>
|