html - spacing in a word javascript -
i wrote code:
$(document).ready(function(){ settimeout( function(){ if($("#site-type").length) { $(".typewrite span").typed({ strings: ["show case ", "projekt"], typespeed: 100, backdelay: 500, loop: false, fontcolor: "green", contenttype: 'html', // or text // defaults false infinite loop loopcount: false, [a-za-z']+( [a-za-z']+)*$ }); } }, 4000); }); }
i want have space in this: hello (and here script typing)
not this: hello(and here script typing)
just guess: try replacing strings: ["show case ", "projekt"],
strings: [" ", "show case ", "projekt"],
Comments
Post a Comment