Is it possible to create Raphael’s object but not drawing it on paper?
In example, i want to create circle, do some actions and show it on callback of actions.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You would need what is called an “offscreen canvas”, something that is currently not implemented in html5 (some people talk about it).
Maybe you can create a canvas and set the css to
display: noneorvisibility: hidden, and copy the image data from one canvas to the other.