web/res/metadataplayer/test/raphael2.html
author Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
Tue, 28 Jun 2011 12:23:18 +0200
changeset 200 df98bc033a67
parent 133 9578d3ddce17
permissions -rwxr-xr-x
remove '_gaq.push(['_setDomainName', '.iri.centrepompidou.fr']);' for google analytics

<!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>