Skip to content
Advertisement

JavaScript translate depending on index

So I have a code like this

JavaScript

and it doesnt work… Any solutions? (i want to change each letter position depending on array index)

Advertisement

Answer

You are not referencing the index variable correctly, your style attribute is always the same. Also the parenthesis in translateY are not necessary. Depending on your runtime you can try template strings

JavaScript

or string concatenation

JavaScript
Advertisement