5

有谁知道拉斐尔是否支持使用投影。我正在尝试为我创建的对象创建投影。这是我的代码,但我不知道如何添加阴影。如果可以,请帮助我,我的经理对我非常失望。

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

5 回答 5

7

-.glow()方法可以在一定程度上使用:

var circle = paper.circle(100,100,50);
var path = paper.path('m200,50 l100,0 l100,100 l0,100 z');

circle.glow();

path.attr({
    fill: 'blue'
});
path.glow({
    color: '#444',
    offsety: 20 
});​

在这里查看它的实际效果:http: //jsfiddle.net/sveinatle/gkayG/7/

它似乎只适用于线条,但实际上并没有填充阴影。

于 2012-06-29T13:40:29.070 回答
1

Raphaeljs 本身没有这样的功能,但插件可能会有所帮助。另外,对于简单的形状,我认为可以通过渲染两次来模拟效果,首先是黑色,部分透明度和一点偏移(模仿阴影),然后是形状本身。

于 2012-06-29T13:24:33.587 回答
1

老问题,但我更喜欢在它下面绘制对象的克隆,每个像素都从前一个像素中删除,以获得 3D 效果。

Raphael.el.depth = function(z, shade) {
    z = (typeof z !== "undefined") ? z : 5;
    shade = (typeof shade !== "undefined") ? shade : '#999';
    for (var c = 0; c < z; c += 1) {
        var s = this.clone().attr({ 'fill': shade }).transform("t" + (c + 1) + "," + (c + 1));
    }
    this.toFront();
}; 
于 2012-12-21T19:27:50.103 回答
0

另一个很好的解决方案是使用clone()函数。这是一个很好的选择,因为它适用于复杂paths的 . 它看起来真的像一个影子。

查看演示

var r = new Raphael(10,10, 500, 500);
var p = r.path("M100,300 L100,100 C100,100 250,100 250,300z");
p.attr({fill: 'yellow'});

p2 = p.clone();
p2.attr({fill:'gray', stroke:'none'}).transform('t7,5');

p.toFront();
于 2013-07-23T18:33:08.403 回答
0

我写了一个扩展来处理这种事情。它真的很容易使用:

circle.shadow();

会做你想做的。此外,它是 SVG 滤镜效果的实现(glow()不是),因此它适用于动画等。

项目页面在这里:http ://chrismichaelscott.github.io/fraphael/ 。

于 2013-07-23T17:22:24.770 回答