Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要制作一个具有两种不同颜色的填充和笔触的可编辑文本,以放置在图片背景上,例如电影字幕,黄色填充和黑色笔触。我只找到了带有画布的教程和示例,但我认为不可能使其可编辑,不是吗?
最好使用 CSS3 text-shadow:
text-shadow
#container { color: yellow; text-shadow: #000 1px 1px 0px, #000 -1px -1px 0px; }
这是小提琴