Generation

generate functionMon, 17 Apr 2023

funcion que aumente a traves de un boton el texto hasta un 50% máximo

function increaseText(size) { if (size < 1.5) { size = size + 0.1; document.getElementById("text").style.fontSize = size + "em"; } }

Javascript
Generate More

Want to kickstart your project?Use the new AI Studio to create your code