Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize typewriter effect with jQuery

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces the jQuery how to achieve typewriter effect related knowledge, the content is detailed and easy to understand, the operation is simple and fast, has a certain reference value, I believe that everyone after reading this jQuery how to achieve typewriter effect article will have a harvest, let's take a look at it.

Example code:

A rain trapped me here.

Your gentle expression

It makes me sad.

The rain in June is just a ruthless you.

Fn.autotype = function () {var $text = $(this); console.log ('this',this); var str = $text.html (); / / returns the content of the selected element var index = 0; var x = $text.html ('') There is a difference between / / $text.html () and $(this) .html ('') the var timer = setInterval (function () {/ / substr (index, 1) method extracts the character var current = str.substr (index, 1) starting from the index subscript in the string; if (current = ='', index) + 1;} else {index + + } / / console.log (["characters under 0 to index", str.substring (0, index)], ["symbol", index & 1?'_':']); / / substring () method is used to extract the character $text.html (str.substring (0, index) + (index & 1?'_':'') that mediates between two specified subscripts) If (index > = str.length) {clearInterval (timer);}}, 100);}; $("# autotype"). Autotype (); this is the end of the article on "how to achieve typewriter effect in jQuery". Thank you for reading! I believe that everyone has a certain understanding of the knowledge of "how to achieve typewriter effect in jQuery". If you want to learn more knowledge, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report