标签:
引入顺序
var str = "欢迎您来到这里,就到下一行了。说好的可以一下一下的呢。还是说..."; var arr = str.split(‘‘);
接下来引入 function()
1 $.fn.consFont = function (arr,speed,split){ 2 var count = 0; 3 var length = arr.length; 4 var timer; 5 var _this = $(this); 6 if(count===length){ 7 clearInterval(timer) 8 }else{ 9 timer = setInterval(function(){ 10 if(arr[count++]===split){ 11 _this.append("<br/>"); 12 }else{ 13 _this.append(arr[count]); 14 } 15 },speed); 16 } 17 }
最后一步调用
//直接调用 $(‘section‘).consFont(arr,20,‘。‘);
标签:
原文地址:http://www.cnblogs.com/leilin007/p/4522545.html