gpt4 book ai didi

javascript - two.js 中的文本不会显示

转载 作者:行者123 更新时间:2023-11-30 20:07:03 24 4
gpt4 key购买 nike

我有一个显示扩大圆圈的程序。最后,我希望它显示一个名为列表的数组中随机生成的项目。

The Code

具体代码如下

var list = ["list","of","names"];
var person = ("")
person = list[Rnd(0,2)];
var text1 = new Two.Text(person ,250,250, 'normal');

text1.value = person;
text1.fill = '#FFFFFF';
text1.stroke ='#FFFFFF';
text1.visible = true;

编辑:

我特别想使用双文本而不是 HTML

最佳答案

我能够通过使用圆的半径作为添加文本的条件来获得效果。我将圆的半径设为 100。

var circle = two.makeCircle(two.width / 2, two.height / 2, 100);
circle.fill = "orange";
var list = ["list","of","names"];
var person = list[Math.floor(Math.random() * list.length)];
var text1 = new Two.Text(person, two.width / 2, two.height / 2, 'normal');
text1.fill = '#FFFFFF';
text1.stroke ='#FFFFFF';

绑定(bind)循环播放圆形动画。一旦圆扩大到半径 200,它就会停止动画,并将 text1 添加到两个 Canvas 。

two.bind('update', function() {
if (circle.radius > 200) {
two.pause();
two.add(text1);
}
circle.radius++;
});

关于javascript - two.js 中的文本不会显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52816344/

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