Auto Printer automatic Typewriter effect

Source: Internet
Author: User

Some time ago I saw the effect of a typewriter, so, on impulse, I also wrote a typewriter effect.

Relatively simple, but still need to optimize the place, because they feel that the effect is not flashy, and so on which day to come up with good ideas. Again to update ...

Code effects preview Address: http://code.w3ctech.com/detail/2525

Html:

1<DivClass= "Container">2<DivId= "title"><H3> I like to go--wang Guozhen really</H3></Div>3 <span id= "content"  >4 </span>5 <span class= "line" >_span>6 </div>       

Css:

*{
padding:0;
margin:0;
}
body{

}
. container{
width:80%;
margin:0 Auto;
Height:auto;
padding-top:80px;
Color: #2d6b28;
line-height:24px;
font-size:20px;
Transition:all 100ms Ease 100ms;
}
. line{
Animation:myfirst 0.5s Infinite;
}
@keyframes Myfirst
{
from{opacity:0}
To{opacity:1}
}

Js:

Window.onload = function () {
var content = document.getElementById ("content");
var index = 0;
var timer;
var str = "I like to go." n every place that arrives, belongs to yesterday. Even if the mountain again green, the water again show, the wind again gentle. Too deep linger becomes a kind of fetters, stumbling not only have both feet, still have the future. n How can you not like to start? have not seen the towering mountains, it is really a pity, see the mountains of towering not seen the vastness of the sea still regret, see the vast expanse of the sea has not seen the vast expanse of the desert, still regret, see the vast expanse of the desert has not seen the mysterious forest, or regret. There are endless scenery in the world, I have not the old mood. n I naturally know that the mountains have bumpy, the sea has waves, the desert has sand, the forest has the beast. Even so, I still like it. n Break the Peace of life is another scene, a kind of young scenery. I'm glad I'm not old enough. Even if it is really old, what is not a word called Hale? n So, I also want to learn from the mountains deep, I also want to learn from the sea of courage, I also want to learn from the desert calm, I also want to learn from the forest alert. I want to learn to taste a colorful life. How far can n people go? This is not to ask the two feet but to ask ambition, how high can people climb? This is not about asking your hands but asking for the will. So, I want to use the blood of youth to their own tree up a lofty goal. Not only to strive for a glorious, but also to pursue a realm. The goal is achieved, is glorious, the goal can not achieve, life will be because of this journey to enrich and enrich, in my opinion, this is not a lifetime. n Yes, I like to go, and I hope you like it. ";
function print () {
if (index = = 0) {
content.innerhtml + = "</br></br>";
content.innerhtml + = "&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp";
}
if (str[index]== "n") {
content.innerhtml + = "</br></br>";
content.innerhtml + = "&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp";
}
else if (index==str.length) {
Clearinterval (timer);
}
Else
Content.innerhtml + = Str[index];
index++;
}
Timer=setinterval (print,100);
}

Auto Printer automatic Typewriter effect

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.