用Raphael JS制作一个可点击的对象

时间:2012-07-27 19:03:08

标签: javascript jquery html css raphael

我创建了一个3d外观圈,希望它可以点击并显示其数据。我似乎无法让它工作。有人可以帮我解决这个问题吗???我尝试这样做的代码就在底部....

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Raphaël · Ball</title>
    <link rel="stylesheet" href="demo.css" type="text/css" media="screen">
    <link rel="stylesheet" href="demo-print.css" type="text/css" media="print">
    <script src="raphael.js" type="text/javascript" charset="utf-8"></script>
    <script type="text/javascript" charset="utf-8">
        Raphael.fn.ball = function (x, y, r, hue) {
            hue = hue || 0;
            return this.set(
                //this part is the drop shadow
                this.ellipse(x, y + r - r / 5, r, r / 2).attr({fill: "rhsb(" + hue + ", 1, .25)-hsb(" + hue + ", 1, .25)", stroke: "none", opacity: 0}),
                //this part is the top part of the circle
                this.ellipse(x, y, r, r).attr({fill: "r(.5,.9)hsb(" + hue + ", 1, .75)-hsb(" + hue + ", .5, .25)", stroke: "none"}),
                //this is the inner glow part from the top
                this.ellipse(x, y, r - r / 5, r - r / 20).attr({stroke: "none", fill: "r(.5,.1)#ccc-#ccc", opacity: 0})
            );
        };
        window.onload = function () {
            var R = Raphael("holder"), x = 300, y = 100, r = 100;
            //I cant tell what numbers are passed into here?????
            R.ball(x, y, r, Math.random()).data("i", i).click(function () {
            alert(this.data("i"));
         });
        };
    </script>
    </head>
    <body>
        <div id="holder"></div>
    </body>
</html>

1 个答案:

答案 0 :(得分:0)

如果我在这里弄错了,我道歉...但是这段代码的示例对我来说很好....不幸的是,我似乎无法找到您传递给{var i的代码中的data('i',i) 1}} ....声明var i = something;或尝试这些数据('我','你好')让你知道它有效...希望它有所帮助。

<强> jsFiddle