现在的浏览器都采用的多标签模式,如果网站的标题很长很长,在浏览器标签栏是看不全的,为了更个性化,我们可以使用下面这段个性化jquery代码让你的网站标题栏滚动起来,让用户更容易记住你的网站名称。
如果你想使用个性化jquery代码让你的标题栏滚动起来,把下方的jquery代码复制到你网站的js文件里,就能使用了;要注意这是jquery代码,需要引用jquery库才能正常运行。
$(function(){ var titlename= $(document).attr("title").split(""); function gdtitle(){ titlename.push(titlename[0]); titlename.shift(); document.title = titlename.join(""); } setInterval(gdtitle,1000);//设置时间间隔运行 )};
留言咨询