xxxxxxxxxx
37
let textContent = `Welcome to the mysterious fridge!
A magical portal that connects you to different versions of yourself across parallel universes.
As strange as it sounds, every time you open this door and choose ingredients for your smoothie, you'll get a glimpse into how another you is living in another world.
Each ingredient holds a special power to reveal these alternate lives, and your instincts will guide you to the perfect combination.
Ready to discover which universe your smoothie will connect you to today?
Take a look inside and pick out 3 ingredients that are calling to you.`;
let displayedText = ""; // 화면에 표시될 텍스트
let index = 0; // 현재 타이핑된 글자 수
let typingSpeed = 2; // 타이핑 속도 (프레임마다 밀리초 단위)
function setup() {
createCanvas(400, 550);
textSize(16);
textFont("hack");
textWrap(WORD);
fill('#99ff38');
frameRate(30); // 프레임 속도를 설정하여 타이핑 효과 조정
}
function draw() {
background(0);
text(displayedText, 30, 30, 360); // 텍스트는 캔버스 내부 여백 20px로 설정
// 텍스트가 모두 표시되지 않았으면 한 글자씩 추가
if (index < textContent.length) {
if (frameCount % typingSpeed === 0) {
displayedText += textContent[index];
index++;
}
}
}