If this takes longer than a minute, please refresh the page and try again.
movie = image();
movie.source = "the-road.webp";
var text1 = text("Welcome to 'Choose A Quote'");
text1.font = "oswald"
text1.size = 80
text1.x = 175
text1.y = 30
text1.color = "yellow"
var text2 = text("directions:");
text2.font = "oswald";
text2.y = 140
text2.x = 35
var text3 = text(" 1. six emojis will appear, press on the one you like the most");
text3.font = "oswald"
text3.y = 220
text3.x = 20
var text4 = text( "2. once you choose, a new image and quote will appear")
text4.font = "oswald"
text4.y = 310
text4.x = 30
var text5 = text ("3. read the quote!! then refresh to play again!");
text5.font = "oswald"
text5.y = 410
text5.x = 30
var text6 = text("PRESS THE YELLOW LINES ON THE ROAD TO CONTINUE ");
text6.font = "oswald"
text6.y = 560
text6.x = 110
text6.color = "#F6FF00"
repeat (function(){
text6.x -= 20;
}, 1);
repeat(function() {
if(text6.x < -1000){
text6.x = 500;
}
}, 1);
movie.whenMouseClicked = function() {
if (mouse.x > 100 ){
movie.source = "capture7.png";
text1.message = "";
text2.message = "";
text3.message = "";
text4.message = "";
text5.message = "";
text6.message = "";
}
if ( mouse.x > 95 && mouse.x < 255 && mouse.y > 70 && mouse.y < 235) {
movie.source = "the-beach.webp";
var my_graphic3 = graphic("goodthings.png")
my_graphic3.x = 775
my_graphic3.y = 60
audio("dance.mp3");
}
if (mouse.x >100 && mouse.x < 250 && mouse.y > 300 && mouse.y < 455) {
movie.source = "birds-flying.webp";
var my_graphic1 = graphic("beaut.png");
my_graphic1.y = 450
my_graphic1.x = 445
audio("funk.mp3");
}
if (mouse.x >103 && mouse.x < 258 && mouse.y > 535 && mouse.y < 670){
movie.source = "mijas.webp";
var my_graphic5 = graphic("adventures.png");
my_graphic5.x = 320
my_graphic5.y = 1
var my_graphic8 = graphic("groovy.png");
my_graphic8.x = 300
my_graphic8.y = 600
audio("retro.mp3");
}
if (mouse.x > 913 && mouse.x < 1062 && mouse.y > 65 && mouse.y < 215){
movie.source = "landscape.webp"
var my_graphic4 = graphic("dreamss.png");
my_graphic4.x = 100
my_graphic4.y = 1
var my_graphic9 = graphic("no_bad_days.png");
my_graphic9.x = 750
my_graphic9.y = 600
audio("rock.mp3");
}
if (mouse.x > 915 && mouse.x < 1065 && mouse.y > 295 && mouse.y < 435){
movie.source = "beachdr.webp"
var my_graphic2 = graphic("seetheworld.png")
my_graphic2.x = 290
my_graphic2.y = 210
audio("retro.mp3");
}
if (mouse.x > 925 && mouse.x < 1085 && mouse.y > 520 && mouse.y < 683){
movie.source = "sky11.webp";
var my_graphic6 = graphic("numheart.png");
my_graphic6.x = 750
my_graphic6.y = 110
var my_graphic7 = graphic("choose.png");
my_graphic7.y= 100;
my_graphic7.x = 50;
audio("funk.mp3");
}
};
Link to Project
Embed Code