Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
inetpub
/
wwwroot
/
HRDC
/
HRDC
/
Content
/
assets
/
js
/
View File Name :
typewriter.js
// typewriter // 3215287 // bertaec32@gmail.com (function($, w, d, undefined) { function typewriter() { // Globals var self = this, speed; function init(element, options) { // Set Globals var str; var indice = 0; self.options = $.extend( {}, $.fn.typewriter.options, options ); $currentElement = $(element); elementStr = $currentElement.text().replace(/\s+/g, ' '); dataSpeed = $currentElement.data("speed") || self.options.speed; $currentElement.empty(); var showText = setInterval( function(){ if (indice++ < elementStr.length) { $currentElement.append(elementStr[indice - 1]); }else{ clearInterval(showText); } }, dataSpeed); // self.animation = setInterval(function(){animate_calification()}, 20); } // Metodos publicos return { init: init } } // Plugin jQuery $.fn.typewriter = function(options) { return this.each(function () { var writer = new typewriter(); writer.init(this, options); $.data( this, 'typewriter', writer); }); }; $.fn.typewriter.options = { 'speed' : 300 }; })(jQuery, window, document);