Today in this tutorial, I will expose a simple Blogger tricks that will explain how to add moving text or text animation in post. You can move text from left to right ,right to left, up to down or down to up. To add a animated text you just need to use <marquee> tag. It is also called marquee effect. Lets begin with simple examples.
Keep your animated text between marquee tag.
<marquee>Add your text here....</marquee>
Animate Text From Left to Right
<marquee direction="left">Add your text here....</marquee>This will show as this :
Marquee Text From right to left
You can change the direction of the text by using this tag in the beginning :<marquee direction="right">Add your text here....</marquee>
Move Text From Down to up
<marquee direction="up">Add your text here....</marquee>To add a background color use this code :
<marquee direction="right" width="100%" style="background:#EC4F52"><font color="white">Add your text here...</font></marquee>
It will look like this :