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?
谢谢!
没有。 css应用于dom元素,而文档对象模型中不存在“画布中的元素”。它们只是简单的图像数据。
但是,您始终可以setShadow在画布上下文中使用本机 js 函数。你可以在这里看到它的实际效果。
setShadow