This is default featured slide 1 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 2 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 3 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 4 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 5 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
sexta-feira, 10 de fevereiro de 2012
WEREEWREWRWR
tag */
function writeIt(ele, object, index, dir) {
/* If vertical then add a
*/
ele.innerHTML += object[index];
if (dir === 'v') {
ele.innerHTML += '
';
}else{ return; }
}
/*** END FUNCTIONS ***/
/* Convert obj to character array if string */
newObj = (Array.isArray(obj)) ? obj : splitStr(obj);
/* Attach class to element */
elmt.className += 'chardelay';
/* Attach element to document */
document.body.appendChild(elmt);
/* Loop through Array */
for (var i = 0; i < newObj.length; i++) {
/* Anonymous IIFE passing vars elmt, newObj, i, direction */
(function(e, o, x, d){
/* Invoke delay */
setTimeout(function(){
/* Call write function */
writeIt(e, o, x, d);
},x * dly); /* multiply to keep consistant interval on each loop*/
})(elmt, newObj, i, direction);
}
}
/* Start */
init();