xxxxxxxxxx
51
let myText;
let img;
let quote;
let author
let index = 0;
let tempIndex = 0;
let imgList;
let imgIndex = 0;
function preload(){
myText = loadStrings("text.txt");
img = loadImage("landscape.jpg");
img1 = loadImage("landscape1.jpg");
img2 = loadImage("landscape2.jpg");
img3 = loadImage("landscape3.jpg");
img4 = loadImage("landscape4.jpg");
imgList = [img, img1, img2, img3, img4];
}
function setup() {
createCanvas(windowWidth, windowHeight);
frameRate(10);
}
function draw() {
background(imgList[imgIndex]);
fill(255);
if (mouseIsPressed == true){
randomGenerator();
}
tempIndex = index;
quote = myText[index];
author = '~' + myText[index+1] +'~';
textAlign(CENTER);
textSize(windowHeight/40)
text(author, windowWidth/2, windowHeight/2 - windowHeight/40);
textSize(windowHeight/30)
text(quote, windowWidth/6, windowHeight/2, windowWidth-2*windowWidth/6);
}
function randomGenerator(){
while (tempIndex == index){
index = (int(random(myText.length)) * 2) % myText.length;
}
imgIndex += 1;
imgIndex = imgIndex % imgList.length;
}