Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Anyone know how this can be done? Would you use a canvas object, svg, jQuery, etc?

share|improve this question

4 Answers

A canvas element with some JavaScript would work great.

In fact, Signature Pad (a jQuery plugin) already has this implemented.

share|improve this answer
2  
I am astonished how beautiful this plugin is. – Gourneau Mar 14 '12 at 6:49
So perfect! Thanks for sharing! – Noel Feb 24 at 1:18

Here is a quickly hacked up version of this using SVG I just did. Works well for me on my iPhone. Also works in a desktop browser using normal mouse events.

share|improve this answer

Perhaps the best two browser techs for this are Canvas, with Flash as a back up.

We tried VML on IE as backup for Canvas, but it was much slower than Flash. SVG was slower then all the rest.

With jSignature ( http://willowsystems.github.com/jSignature/ ) we used Canvas as primary, with fallback to Flash-based Canvas emulator (FlashCanvas) for IE8 and less. Id' say worked very well for us.

share|improve this answer
This is really nice... I like it's smoothing effects. Best I've seen. – Camden S. Jun 4 at 19:04

Here's another canvas based version with variable width (based on drawing velocity) curves: http://szimek.github.io/signature_pad.

signature sample

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.