Type.js words not showing up

I just used the type.js and on completion the cursor is showing. However the words are not popping up. Ive been on this for hours now so i need another pair of eyes to. Can someone please help? https://sleepinggiant.webflow.io/

Hi,

You have inline style on the letters
style="color: black;"
and
The bg is also black.


https://steven.codes/typerjs/docs/index.html

Try under the setting to put some color:

...rest of the code
    typeSpeed: 0,
    backSpeed: 0,
    colors: ["#e76f51"],
    smartBackspace: true, // this is a default
    loop: true
  });

If this is not working add custom style and that’s it:

<style>
[data-words]{
    color: #e76f51!important;
}
</style>

Man thank you! It worked haha

1 Like