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.
我将如何在单击功能上添加 html5 画布元素,或者它是否需要准备好或加载文档?
我想做的是创建一种使用画布作为荧光笔的方法,用户单击荧光笔按钮,然后绘制突出显示的标记。
我正在考虑将其包含在点击事件中,以便我可以继续使用我的 touchwipe 事件。这是在 Android 设备上,我目前有一个滑块循环浏览我希望允许用户标记的书的光栅化页面。画布元素将位于 img 的顶部并且是半透明的。
谁能指出我正确的方向?
在这种情况下,canvas 元素的行为类似于其他 dom 元素。尝试:
var x = $('<canvas height="100px" width="100px"> </canvas> '), y = x[0].getContext('2d'); y.strokeRect(0,0,50,50) x.appendTo('body')