码迷,mamicode.com
首页 > Web开发 > 详细

js打字效果

时间:2018-01-29 11:43:26      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:中介   body   length   app   sub   依次   步骤   pen   font   

 //文字依次出来效果
$.fn.autotype = function() {
    var $text = $(this);
    // console.log(‘this‘, this);
    var str = $text.html(); //返回被选 元素的内容
    var index = 0;
    var x = $text.html(‘‘);
    //$text.html()和$(this).html(‘‘)有区别
    var timer = setInterval(function() {
        //substr(index, 1) 方法在字符串中抽取从index下标开始的一个的字符
        var current = str.substr(index, 1);
        if (current == ‘<‘) {
            //indexOf() 方法返回">"在字符串中首次出现的位置。
            index = str.indexOf(‘>‘, index) + 1;
        } else {
            index++;
        }
        //console.log(["0到index下标下的字符",str.substring(0, index)],["符号",index & 1 ? ‘_‘: ‘‘]);
        //substring() 方法用于提取字符串中介于两个指定下标之间的字符
        $text.html(str.substring(0, index) + (index & 1 ? ‘‘: ‘‘));
        if (index >= str.length) {
            clearInterval(timer);
        }
    },
    100);
}

$(‘.font‘).autoplay();

 

//文字依次出来效果,这种方法可行,但流程步骤一多容易混乱
  var con  = $(".fontx");         
  var index = 0;  
  var tid = null;  

  function start(s){ 
  var len = s.length;  
      con.text(‘‘);  
      tid = setInterval(function(){  
          con.append(s.charAt(index));  
          if(index ++ === len){  
              clearInterval(tid);  
              index = 0;  
          }  
      },100);  
  }

start(str)

 

js打字效果

标签:中介   body   length   app   sub   依次   步骤   pen   font   

原文地址:https://www.cnblogs.com/leiting/p/8375876.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!