ラファエルがドロップシャドウの使用をサポートしているかどうかは誰にもわかりません。作成したオブジェクトのドロップシャドウを作成しようとしています。これが私が持っているコードですが、ドロップシャドウを追加する方法がわかりません。マネージャーが私に非常に不満を感じている場合は、私を助けてください。
<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>