Friday 2 November 2018

Scrolling Title in your Website

Title is more important while creating website. It will be more attractive if it is scrolling. Here is a simple script to make your webpage attractive.

<script type='text/javascript'>
          title = "Athira Rajinesh";
          position = 0;
          function scrolltitle() {
              document.title = title.substring(position, title.length) + title.substring(0, position);
              position++;
              if (position > title.length) position = 0;
              titleScroll = window.setTimeout(scrolltitle, 170);
          }
          scrolltitle();
</script>

No comments:

Post a Comment