Hello everyone,
I am currently working on my website (Debut Theme) and wanted to add a typing effect with changing text carousel to my slideshow title.
I found this code that is exactly what I want to do: https://codepen.io/CheeseTurtle/pen/jzdgI
The thing is I don’t know exactly where to put the JS code, I tried adding it to the theme.js at the end:
var TxtRotate = function(el, toRotate, period) {
this.toRotate = toRotate;
this.el = el;
this.loopNum = 0;
this.period = parseInt(period, 10) || 2000;
this.txt = '';
this.tick();
this.isDeleting = false;
};
TxtRotate.prototype.tick = function() {
var i = this.loopNum % this.toRotate.length;
var fullTxt = this.toRotate[i];
if (this.isDeleting) {
this.txt = fullTxt.substring(0, this.txt.length - 1);
} else {
this.txt = fullTxt.substring(0, this.txt.length + 1);
}
this.el.innerHTML = ''+this.txt+'';
var that = this;
var delta = 300 - Math.random() * 100;
if (this.isDeleting) { delta /= 2; }
if (!this.isDeleting && this.txt === fullTxt) {
delta = this.period;
this.isDeleting = true;
} else if (this.isDeleting && this.txt === '') {
this.isDeleting = false;
this.loopNum++;
delta = 500;
}
setTimeout(function() {
that.tick();
}, delta);
};
window.onload = function() {
var elements = document.getElementsByClassName('txt-rotate');
for (var i=0; i
And then replacing this part in the **slideshow.liquid**:
```markup
##
{{ block.settings.slide_title | escape }}
with this :
# This pen is
But only the first part of the title appears, not the changing text…
Any ideas how to fix that?
Sorry I am really new in coding so I don’t even know exactly where to put the JS code…
Thanks!!!