溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jQuery怎么實現(xiàn)打字機(jī)效果

發(fā)布時間:2022-03-31 10:05:45 來源:億速云 閱讀:113 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹了jQuery怎么實現(xiàn)打字機(jī)效果的相關(guān)知識,內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇jQuery怎么實現(xiàn)打字機(jī)效果文章都會有所收獲,下面我們一起來看看吧。

實例代碼:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="keyword" content="">
<meta name="description" content="">
</head>
<body>
<div class="autotype" id="autotype">
 <p>一場雨把我困在這里</p>
 <br/>
 <p>你溫柔的表情</p>
 <p>會讓我傷心</p>
 <br/>
 <p>六月的雨,只是無情的你~</p>
</div>
<script src="http://file2.ci123.com/ast/js/jquery_172.js"></script>
<script>
 $.fn.autotype = function(){
  var $text = $(this);
  console.log('this',this);
  var str = $text.html();//返回被選 元素的內(nèi)容
  var index = 0;
  var x = $text.html('');
  //$text.html()和$(this).html('')有區(qū)別
  var timer = setInterval(function(){
   //substr(index, 1) 方法在字符串中抽取從index下標(biāo)開始的一個的字符
   var current = str.substr(index, 1);
   if(current == '<'){
   //indexOf() 方法返回">"在字符串中首次出現(xiàn)的位置。
    index = str.indexOf('>', index) + 1;
   }else{
    index ++ ;
   }
   //console.log(["0到index下標(biāo)下的字符",str.substring(0, index)],["符號",index & 1 ? '_': '']);
   //substring() 方法用于提取字符串中介于兩個指定下標(biāo)之間的字符
   $text.html(str.substring(0, index) + (index & 1 ? '_': ''));
   if(index >= str.length){
    clearInterval(timer);
   }
  },100);
 };
 $("#autotype").autotype();
</script>
</body>
</html>

關(guān)于“jQuery怎么實現(xiàn)打字機(jī)效果”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“jQuery怎么實現(xiàn)打字機(jī)效果”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI