If this takes longer than a minute, please refresh the page and try again.
//My awesome Snapchat Filter
//Customize code here!
movie = webcam();
height = movie.height / 8;
var box = rect(0, 0, movie.width, height);
box.color = "red";
box.opacity = .5;
var box = rect(0, height, movie.width, height);
box.color = "orange";
box.opacity = .5;
var box = rect(0, height*2, movie.width, height);
box.color = "yellow";
box.opacity = .5;
var box = rect(0, height*3, movie.width, height);
box.color = "green";
box.opacity = .5;
var box = rect(0, height*4, movie.width, height);
box.color = "blue";
box.opacity = .5;
var box = rect(0, height*5, movie.width, height);
box.color = "indigo";
box.opacity = .5;
var box = rect(0, height*6, movie.width, height);
box.color = "purple";
box.opacity = .5;
var box = rect(0, height*7, movie.width, height);
box.color = "pink";
box.opacity = .5;
var tip = text("rainbow factorial (rainbow!)");
tip.font = "cursive";
tip.y = height;
tip.size = 50;
tip.x = 10;
​
var my_graphic2 = graphic("Nyan-Cat-PNG.png");
my_graphic2.x = 75;
my_graphic2.y = movie.height - 170;
my_graphic2.opacity = .9
my_graphic2.scale = .6
var emoji = text("🌈");
emoji.size = 120;
emoji.x = 500
emoji.y = height*5
emoji.opacity = .9
Created on Wed Aug 17 2016
nyan cat + rainbow! created by a math geek. (obviously cuz of the small math joke ;) yay for factorial)
Link to Project
Embed Code
March 23, 2021 at 10:19 AM
August 25, 2020 at 10:28 PM
July 28, 2020 at 8:58 PM
Revision 2
July 31, 2020 at 1:38 AM
Revision 1