Star

Scramble

animation library for texts — Version

Scramble & Decode

you pressed the button
original run finished
const jumbler = scramble(HTMLElement)
jumbler.worker.original // button 1
jumbler.run()           // button 2
jumbler.finished()      // button 3
          

Worker Entity

this is the worker function
original start stop
const jumbler = scramble(HTMLElement)
const runner = jumbler.worker
runner.original // button 1
runner.start()  // button 2
runner.stop()   // button 3
          

Successive Scramble

first to decode
next to decode
last to decode
run
const listJumbler = scramble.successive(NodeList<HTMLElement>)
listJumbler.run()