资讯

Fine, I’ll build my own text editor

Adafruit·2026/9/2 20:18:32🔗 原文

📌 概要

David Bushell set out to build his own browser based text editor. His first attempt drew everything to a <canvas> element at 60 to 120 frames per second. It worked, but canvas gives nothing for free:

⚡ 关键要点

  • David Bushell set out to build his own browser based text ed
David Bushell set out to build his own browser based text editor. His first attempt drew everything to a  element at 60 to 120 frames per second. It worked, but canvas gives nothing for free: no text selection, no scrollbars, and no accessibility. He faked scrolling with a hidden overflow 
 sized to match the text, then […]