I want to display part of the line in the first second on the page and the entire line in a second (1000 ms).
Example1: loaded page:
2+2
per second:
2+2=4 (=4 added, 2+2 is not moved)
Example 2:
14 + 10
per second:
14+10=24 (=24 added, 14+10 is not moved)
I would prefer a jQuery solution, but I'm curious if this can be done for any string so that:
1) the line can have different lengths, the mathematical equation "=" is a kind of separator. ("=" is the first of the right side of the line that does not appear when the page loads)
2) the line does not contain additional or any other html tags that help to manipulate the effects of visibility / fadeOut for the right side of the line.