gsap.registerPlugin(TextPlugin, EasePack); var tl = gsap.timeline({defaults: {duration: 2, ease: "none"}}); const elts = { text1: document.getElementById("text1"), text2: document.getElementById("text2") }; const texts = [ "L", "A", "R", "S", ]; const morphTime = 1; const cooldownTime = 0.25; let textIndex = texts.length - 1; let time = new Date(); let morph = 0; let cooldown = cooldownTime; elts.text1.textContent = texts[textIndex % texts.length]; elts.text2.textContent = texts[(textIndex + 1) % texts.length]; function doMorph() { morph -= cooldown; cooldown = 0; let fraction = morph / morphTime; if (fraction > 1) { cooldown = cooldownTime; fraction = 1; } setMorph(fraction); } function setMorph(fraction) { elts.text2.style.filter = `blur(${Math.min(8 / fraction - 8, 100)}px)`; elts.text2.style.opacity = `${Math.pow(fraction, 0.4) * 100}%`; fraction = 1 - fraction; elts.text1.style.filter = `blur(${Math.min(8 / fraction - 8, 100)}px)`; elts.text1.style.opacity = `${Math.pow(fraction, 0.4) * 100}%`; elts.text1.textContent = texts[textIndex % texts.length]; elts.text2.textContent = texts[(textIndex + 1) % texts.length]; } function doCooldown() { morph = 0; elts.text2.style.filter = ""; elts.text2.style.opacity = "100%"; elts.text1.style.filter = ""; elts.text1.style.opacity = "0%"; } function animate() { requestAnimationFrame(animate); let newTime = new Date(); let shouldIncrementIndex = cooldown > 0; let dt = (newTime - time) / 1000; time = newTime; cooldown -= dt; if (cooldown <= 0) { if (shouldIncrementIndex) { textIndex++; } doMorph(); } else { doCooldown(); } } animate(); flaggy_neutral = document.getElementById("flaggy_neutral"); flaggy_happy = document.getElementById("flaggy_happy"); flaggy_sad = document.getElementById("flaggy_sad"); all_flaggies = [flaggy_sad, flaggy_happy, flaggy_neutral]; // Make the DIV element draggable: for (let i = 0; i < all_flaggies.length; i++) { dragElement(all_flaggies[i]); } let rotCount = 0; let check = null function dragElement(elmnt) { var pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0; if (document.getElementById(elmnt.id + "header")) { // if present, the header is where you move the DIV from: document.getElementById(elmnt.id + "header").onmousedown = dragMouseDown; } else { // otherwise, move the DIV from anywhere inside the DIV: elmnt.onmousedown = dragMouseDown; } function dragMouseDown(e) { if (check === null) { check = prompt("Is L.A.R.S. the best CTF team in the world?", "Yes") } if (check.toLowerCase() !== "yes") { flaggy_neutral.style.display = "none"; flaggy_sad.style.display = "block"; flaggy_happy.style.display = "none"; alert("You are not allowed to pull out the flaggy until you admit that L.A.R.S. is the best CTF team in the world!") check = null; return; } flaggy_neutral.style.display = "none"; flaggy_sad.style.display = "none"; flaggy_happy.style.display = "block"; e = e || window.event; e.preventDefault(); // get the mouse cursor position at startup: pos3 = e.clientX; pos4 = e.clientY; document.onmouseup = closeDragElement; // call a function whenever the cursor moves: document.onmousemove = elementDrag; } function elementDrag(e) { e = e || window.event; e.preventDefault(); // calculate the new cursor position: pos2 = pos4 - e.clientY; pos3 = e.clientX; pos4 = e.clientY; // set the element's new position: let angle = Math.floor(Math.random() * 20) - 10; for (let i = 0; i < all_flaggies.length; i++) { let elmnt = all_flaggies[i]; elmnt.style.top = (elmnt.offsetTop - pos2) + "px"; elmnt.style.left = (elmnt.offsetLeft - pos1) + "px"; if (rotCount % 10 === 0) elmnt.style.transform = "rotate(" + angle + "deg)"; } rotCount += 1; } elmnt.offsetTop - pos2 function closeDragElement() { // stop moving when mouse button is released: document.onmouseup = null; document.onmousemove = null; } } var container = $("#demo"), _sentenceEndExp = /(\.|\?|!)$/g; //regular expression to sense punctuation that indicates the end of a sentence so that we can adjust timing accordingly //this function just takes a string of text and splits it into an array based on the maximum length that should be allowed to exist in each line, and when it encounters the end of a sentence (ending in ".", "?", or "!"), it will force a line break too. function buildChunks(text, maxLength) { if (maxLength === undefined) { return text.split(" "); } var words = text.split(" "), wordCount = words.length, chunk = [], chunks = [], i; for (i = 0; i < wordCount; i++){ chunk.push(words[i]); if (_sentenceEndExp.test(words[i]) || i === wordCount - 1 || chunk.join(" ").length + words[i+1].length > maxLength) { chunks.push(chunk.join(" ")); chunk = []; } } return chunks; } /* taken from https://codepen.io/GreenSock/pen/DpRrWV */ function machineGun(chunks, maxLength) { //in case "chunks" isn't an array, we'll build chunks automatically if (!(chunks instanceof Array)) { chunks = buildChunks(chunks, maxLength); } var tl = new TimelineMax({delay:0.6, repeat:2, repeatDelay:4}), time = 0, chunk, element, duration, isSentenceEnd, i; for (i = 0; i < chunks.length; i++) { chunk = chunks[i]; isSentenceEnd = _sentenceEndExp.test(chunk) || (i === chunks.length - 1); element = $("