File: brightness.html

package info (click to toggle)
libjs-graphael 0.5%2Bdfsg-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 296 kB
  • sloc: javascript: 1,589; makefile: 4
file content (47 lines) | stat: -rw-r--r-- 1,630 bytes parent folder | download | duplicates (2)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
    <head>
        <title>Raphael Tooltips</title>
        <script src="../raphael-min.js" type="text/javascript"></script>
        <script src="../g.raphael.js" type="text/javascript"></script>
        <style type="text/css">
            body {
                background-color: #222;
            }
        </style>
        <script type="text/javascript">
            window.onload = function () {
                var r = Raphael("holder", 1200, 800);

                r.circle(200, 200, 150).attr({ fill: '#ff0000' }).lighter(6);
                r.circle(550, 200, 150).attr({ fill: '#ff0000' }).lighter(6).resetBrightness();
                r.circle(900, 200, 150).attr({ fill: '#ff0000' }).darker(6);

                var s = r.set();

                s.push(
                    r.circle(200, 500, 75).attr({fill: '#ff0000' }),
                    r.circle(200, 700, 75).attr({fill: '#00ff00' })
                ).lighter(6);

                var t = r.set();

                t.push(
                    r.circle(550, 500, 75).attr({fill: '#ff0000' }),
                    r.circle(550, 700, 75).attr({fill: '#00ff00' })
                ).lighter(6).resetBrightness();

                var u = r.set();

                u.push(
                    r.circle(900, 500, 75).attr({fill: '#ff0000'}),
                    r.circle(900, 700, 75).attr({fill: '#00ff00'})
                ).darker(6);
            };
        </script>
    </head>
    <body class="raphael">
        <div id="holder"></div>
    </body>
</html>