提交 9f546e5e 编写于 作者: L lang

Pie hover animation fix

上级 e049de30
......@@ -218,19 +218,18 @@ define(function (require) {
);
function onEmphasis() {
// animateTo will stop revious animation like update transition
sector.animateShape()
.when(300, {
sector.animateTo({
shape: {
r: layout.r + 10
})
.start('elasticOut');
}
}, 300, 'elasticOut');
}
function onNormal() {
sector.animateShape()
.when(300, {
sector.animateTo({
shape: {
r: layout.r
})
.start('elasticOut');
}
}, 300, 'elasticOut');
}
if (itemModel.get('hoverAnimation')) {
sector.on('mouseover', onEmphasis)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册