ANY DOM element can be made resizable according to this page: http://jqueryui.com/demos/resizable/
However, it seems that this doesn't work for the CANVAS element. Possible?
|
ANY DOM element can be made resizable according to this page: http://jqueryui.com/demos/resizable/ However, it seems that this doesn't work for the CANVAS element. Possible? |
|||||
|
|
Canvas has two types of resize behavior:
Here's a page that demonstrates the two types of "resizing": http://xavi.co/static/so-resizable-canvas.html If you want the first type of resizing (stretch the content) then place the canvas into a container
The second type of resizing (static content) is a two step process. First you must adjust the
Currently the code above re-draws the canvas's content when the user stops resizing the widget. It's possible to re-draw the canvas on resize, however resize events occur fairly often and re-draws are expensive operations -- approach with caution. |
||||
|
|
|
Well why not apply a div before the canvas element, and resize that element, and when it stops apply width and height in canvas and then redraw canvas. |
|||
|
|