Snippet

ASCII marquee

Full page view

Description

Big ASCII letters which scroll along using JavaScript's requestAnimationFrame method.

Created on 13 Feb 2026

Code

<pre>
 ________    __    ______    ______      
/\  _  _ \  /\ \  /\     \  /\  __ \     
\ \ \\ \\ \ \ \ \ \ \  O  | \ \ \/\ \    
 \ \ \\ \\ \ \ \ \ \ \  _  \ \ \ \_\ \   
  \ \_\\_\\_\ \ \_\ \ \_\/\ \ \ \_____\  
   \/_//_//_/  \/_/  \/_/\/_/  \/_____/  </pre>

<script>
  const pre = document.querySelector`pre`;

  (function animate() {
    let rows = pre.textContent.split`
`;
    rows = rows.map(row => row.substring(1, row.length) + row[0]);
    pre.textContent = rows.join`
`;
    requestAnimationFrame(animate);
  })();
</script>

Site info

Canonical URL https://miro.boats/snippets/snippet/ascii-marquee/
Static site generator Astro v6.3.1
Last build 2026-05-16T07:59:27.759
Web hosting Netlify
Deployment status Netlify deploy status
Git hosting Codeberg
DNS Namecheap