gpt4 book ai didi

javascript - Konva vue js文本滑入舞台然后停止

转载 作者:行者123 更新时间:2023-12-02 22:52:58 25 4
gpt4 key购买 nike

嗨,我正在使用 konva js ( https://konvajs.org ) 和 vue,我正在尝试为文本设置动画,以便它从舞台外滑入屏幕到某个位置,但我不是 100% 确定这应该如何工作,我已经能够在这里进行演示;

https://codesandbox.io/s/vue-konva-template-i2em3

Vue;

  <v-stage ref="stage" :config="stageSize">
<v-layer ref="layer">
<v-text
ref="text1"
:config="{
text: 'Draggable Text',
x: 50,
y: 50,
draggable: true,
fill: 'black'
}"
/>
</v-layer>
</v-stage>
</template>


<script>
const width = window.innerWidth;
const height = window.innerHeight;

export default {
data() {
return {
stageSize: {
width: width,
height: height
}
};
},
methods: {
changeSize(e) {
// to() is a method of `Konva.Node` instances
e.target.to({
scaleX: Math.random() + 0.8,
scaleY: Math.random() + 0.8,
duration: 0.2
});
}
},
mounted() {
const vm = this;
const amplitude = 100;
const period = 5000;
// in ms
const centerX = vm.$refs.stage.getStage().getWidth() / 2;

const text = this.$refs.text1.getStage();

// example of Konva.Animation
const anim = new Konva.Animation(function(frame) {
text.setX(
amplitude * Math.sin((frame.time * 2 * Math.PI) / period) + centerX
);
}, text.getLayer());

anim.start();
}
};
</script>

有什么想法可以让文本从舞台外部出现,然后停在 Canvas 内的某个点吗?

最佳答案

您可以使用node.to()方法对任何Konva.Node进行动画处理:

mounted() {
const textNode = this.$refs.text1.getNode();
const endX = width / 2 - textNode.width() / 2;
// run the animation
textNode.to({
x: endX,
onFinish: () => {
// update the state at the end
this.textPos.x = endX;
}
})
}

演示:https://codesandbox.io/s/vue-konva-animation-demo-lr4qw

关于javascript - Konva vue js文本滑入舞台然后停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58115520/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com