| author | Raphael Velt <raph.velt@gmail.com> |
| Tue, 17 Jan 2012 11:35:58 +0100 | |
| changeset 471 | 65f3ce59d8b7 |
| parent 133 | 9578d3ddce17 |
| permissions | -rwxr-xr-x |
<!doctype html> <html> <head> <script src='raphael-min.js'></script> <script src='https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js'></script> <script> $(function () { var paper = Raphael(10, 50, 300, 250); var circle = paper.circle(50, 40, 10); circle.attr('fill', '#c00'); circle.attr('stroke', '#fff'); }); </script> </head> <body></body> </html>