Fancy heading
more text
dynamic text
edit text
buy now
Here goes your text … Select any part of your text to access the formatting toolbar. Select any part of your text to access the formatting toolbar.
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.11"></script>
<script>
/*Source: https://github.com/falconmasters/tutorial-efecto-escritura-typedjs*/
var typed = new Typed('.typed', {
stringsElement: '#cadenas-texto', // ID del elemento que contiene cadenas de texto a mostrar.
typeSpeed: 80, // Velocidad en mlisegundos para poner una letra,
startDelay: 500, // Tiempo de retraso en iniciar la animacion. Aplica tambien cuando termina y vuelve a iniciar,
backSpeed: 30, // Velocidad en milisegundos para borrrar una letra,
smartBackspace: true, // Eliminar solamente las palabras que sean nuevas en una cadena de texto.
shuffle: false, // Alterar el orden en el que escribe las palabras.
backDelay: 2000, // Tiempo de espera despues de que termina de escribir una palabra.
loop: true, // Repetir el array de strings
loopCount: false, // Cantidad de veces a repetir el array. false = infinite
showCursor: true, // Mostrar cursor palpitanto
cursorChar: '|', // Caracter para el cursor
contentType: 'html', // 'html' o 'null' para texto sin formato
});
</script>