Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use eve() in Raphael?

Can some one give me a simple example of Raphael eve()?

I don't quite understand the parameters and how to call events. I was searching around for a bit but seem like not so many people have used it.

like image 710
tomen Avatar asked Jan 27 '12 10:01

tomen


1 Answers

Simple example of the event functionality in Raphaël:

We define the function that will fire the event

function bar()
{
  var a, b;
  a = 1;
  b = 2;
  eve("run-foo", "self", a, b);
}

The event listener function

function foo(arg1, arg2, arg3)
{
  // if the event is fired from bar() :
  // this == "self"
  // arg1 == a == 1
  // arg2 == b == 2
  // arg3 == undefined/null
}
eve.on("run-foo", foo);
like image 90
meastp Avatar answered Sep 22 '22 21:09

meastp