有谁知道拉斐尔是否支持使用投影。我正在尝试为我创建的对象创建投影。这是我的代码,但我不知道如何添加阴影。如果可以,请帮助我,我的经理对我非常失望。
<html>
<head><title></title>
<script src="raphael-min.js"></script>
<script src="jquery-1.7.2.js"></script>
</head>
<body>
<div id="draw-here-raphael" style="height: 200px; width: 400px;">
</div>
<script type="text/javascript">
//all your javascript goes here
var r = new Raphael("draw-here-raphael"),
// Store where the box is
position = 'left',
// Make our pink rectangle
rect = r.rect(20, 20, 50, 50).attr({"fill": "#fbb"});
</script>
</body>
</html>