Skip to content

Instantly share code, notes, and snippets.

@romasan
Last active November 16, 2025 15:05
Show Gist options
  • Select an option

  • Save romasan/ffce5b2331223af2c3905246bc098008 to your computer and use it in GitHub Desktop.

Select an option

Save romasan/ffce5b2331223af2c3905246bc098008 to your computer and use it in GitHub Desktop.
let text = 'Some text';
const pp = Array(20).fill('⠤').join('');
text = pp + text.replace(/[\ ]/ig, '⠤') + pp;
let i = 0;
const cb = () => {
i++;
if (i % 5 == 0) {
text = text.slice(1) + text.slice(0, 1);
document.location.hash = text;
}
requestAnimationFrame(cb);
}
cb()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment