You may've seen typing animations in websites, they may be GIF images . But, this Typing Animation is made with Pure CSS. Hope you'll like it
Demo
b04 TEAM-Internet World!
Add The CSS To Your Blogger :
- Go To Blogger>>> Design>>>Edit HTML
- CTRL + F To Find ]]</b:skin>
- Copy n Paste Below Code Just Above/Before ]]</b:skin>
@-webkit-keyframes typing {
from { width: 0 }
to { width:16.3em }
}
@-moz-keyframes typing {
from { width: 0 }
to { width:16.3em }
}
@-webkit-keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: black }
}
@-moz-keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: black }
}
body { font-family: Consolas, monospace; }
h5 {
font-size:150%;
width:16.3em;
white-space:nowrap;
overflow:hidden;
border-right: .1em solid black;
-webkit-animation: typing 17s steps(30, end), /* # of steps = # of characters */
blink-caret 1s step-end infinite;
-moz-animation: typing 17s steps(30, end), /* # of steps = # of characters */
blink-caret 1s step-end infinite;
}
- Copy N Paste Below HTML Code
- Where You Want To Show This Animation
<h5>b04 TEAM!</h5>
