[enter image description here][1]“`
/*==================== typed animation=============== */
var typed = new typed(".typing",{
strings:["","Web Designer","Web Developer","Graphics Designer","Trader"],
typeSpeed :100,
BackSpeed:60,
loop:true
})
in above code what was wrong please fix it
this code getting type error
[1]: https://i.stack.imgur.com/fAIwH.png
>Solution :
First you have to show what error you are getting.
BackSpeed => backSpeed
var typed = new Typed('#typed', {
strings: ['string', 'string', 'string'],
typeSpeed: 100,
backSpeed: 100,
fadeOut: false,
smartBackspace: true,
cursorChar: '_',
loop: true
});
like this.