Self Isolation - xx Days in Self Isolation
An adaption of the "Countdown" template for Self Isolation. Tap to increase the number of days.
URL:
https://www.snapchat.com/unlock/?type=SNAPCODE&uuid=7a027644442741298b2ef8d819758a98&metadata=01
Tap to count script:
// -----JS CODE-----
//@input Component.Text myText
// When we start it sets day to 0, sets to 1 on first tap.
var count = 0;
// Define what happens when you tap.
function activateCount () {
//Increment the count
count ++;
var n = count.toString();
//Change from Day to Day when greater than 1
if(count == 1)
{
script.myText.text = n + " DAY";
}
else
{
script.myText.text = n + " DAYS";
}
}
// Bind the function to the touch event.
var touchEvent = script.createEvent("TapEvent");
touchEvent.bind(activateCount)