我用javascript和Raphael lib构建了一种javascript地图。 点击时我可以放大一个物体,但我希望它能够被动画化(比如慢慢潜入等等)。有没有办法这样做而不重新发明轮子?
答案 0 :(得分:6)
没有理由不能对svg对象的视图框进行动画处理 - 拉斐尔根本不提供开箱即用的功能。但是,创建插件相当简单。例如:
Raphael.fn.animateViewBox = function animateViewBox( x, y, w, h, duration, easing_function, callback )
{
var cx = this._viewBox ? this._viewBox[0] : 0,
dx = x - cx,
cy = this._viewBox ? this._viewBox[1] : 0,
dy = y - cy,
cw = this._viewBox ? this._viewBox[2] : this.width,
dw = w - cw,
ch = this._viewBox ? this._viewBox[3] : this.height,
dh = h - ch,
self = this;;
easing_function = easing_function || "linear";
var interval = 25;
var steps = duration / interval;
var current_step = 0;
var easing_formula = Raphael.easing_formulas[easing_function];
var intervalID = setInterval( function()
{
var ratio = current_step / steps;
self.setViewBox( cx + dx * easing_formula( ratio ),
cy + dy * easing_formula( ratio ),
cw + dw * easing_formula( ratio ),
ch + dh * easing_formula( ratio ), false );
if ( current_step++ >= steps )
{
clearInterval( intervalID );
callback && callback();
}
}, interval );
}
安装此插件后实例化的任何纸张都可以使用animateViewBox,方法与Raphael的内置animate方法完全相同。例如......
var paper = Raphael( 0, 0, 640, 480 );
paper.animateViewBox( 100, 100, 320, 240, 5000, '<>', function()
{
alert("View box updated! What's next?" );
} );
示范上演了here。
答案 1 :(得分:0)
Raphael动画通过动画元素属性来工作。当你调用element.animate时,你提供了最终的对象参数,到达那里所需的时间以及可能的缓动函数,如果你不希望它是线性的。
例如,要放大/缩小圆圈,您可以考虑以下示例:http://jsfiddle.net/eUfCg/
// Creates canvas 320 × 200 at 10, 50
var paper = Raphael(10, 50, 320, 200);
// Creates circle at x = 50, y = 40, with radius 10
var circle = paper.circle(50, 40, 10);
// Sets the fill attribute of the circle to red (#f00)
circle.attr("fill", "#f00");
// Sets the stroke attribute of the circle to white
circle.attr("stroke", "#fff");
var zoomed = false;
circle.click(function () {
if (zoomed) {
this.animate({ transform: "s1" }, 500);
zoomed = false;
} else {
this.animate({ transform: "s4" }, 500);
zoomed = true;
}
});
动画圆的变换属性。要缩放地图,您应该将所有元素放在一个组中,并为该组的transform属性设置动画,同时考虑您想要结束的比例和平移。
有关transform属性的更多信息,请参阅http://raphaeljs.com/reference.html#Element.transform。