Follow the Mouse Cursor

I have your code exactly perfect but i get this error:
Uncaught TypeError: Cannot read property ‘addEventListener’ of undefined

Strange. It means the element you are calling addEventListener on is undefined. Can you check if your querySelector call is going for the correct element? If you can post your code, that will also help figure out what is going on :slight_smile:

Hello
I love this!!! So useful. I am trying to modify the code so that it does actually leave a cool finger painting effect on the full HTML page. I have tried everything within my limited knowledge but nothing is working.
Please help. Thanks

Are you using a canvas element to leave the finger painting effect?

Hi,
I have tried using canvas, and that seems to work for the finger painting effect-The effect am trying to use is so that the whole HTML can have the whole finger painting effect.

You can overlay the canvas on top of your HTML elements. With a transparent background, it will look as if you are finger-painting over your HTML content :slight_smile:

The reason why I prefer the canvas approach is performance. You can simulate this effect on HTML using DOM elements where for every few pixels of movement, you place an HTML element at the location of your finger or mouse cursor. For a lot of elements, that can start to get really memory intensive. (I outline the differences between the DOM and Canvas here)

1 Like

You learn something new every day.
Thank you so much! :smile: -)

1 Like

Thank you for this. I will see if I can make it work for my situation.

1 Like

Hey!

Thank you soo much Kirupa for sharing such an amazing thing… I tried your code it works Great!

I just wanna know… Can We place the moving object at any place we want to on the canvas and after that stop follow mouse cursor?

Also Can we do similar thing in the Konva React Canvas?

Can you clarify what you mean by placing the object anywhere and stopping the follow effect?

For example, When cursor came to the canvas then the shape will follow mouse moves… And when I click on any where in the canvas then on click event the shape will place on the canvas and no movements will occur after that…

How can we do that ?

Ah, gotcha! What you need is a variable that determines whether the shape should follow the mouse or not. You can use that variable to stop the requestAnimationFrame call from looping and animating the shape. Here is a rough example:

var toAnimate = true;

function update() {
  context.clearRect(0, 0, canvas.width, canvas.height);
 
  context.beginPath();
  context.arc(mouseX, mouseY, 50, 0, 2 * Math.PI, true);
  context.fillStyle = "#FF6A6A";
  context.fill();

  if (toAnimate) {
    requestAnimationFrame(update);
  }
}

When you click, you can set toAnimate to false. That will do the trick.

Cheers,
Kirupa

Yeah! it works Great!

Thanks! :slight_smile: :+1:

Hii Kirupa,

Can we do mouse follow thing with the konva canvas ?

I have tried your example with HTML5 canvas… It works Awesome!
But, When I implement it in konva… I am facing issues.

If possible can you please share same example with the konva canvas please?

I haven’t used konva canvas before. I wouldn’t even know where to begin!

No worries :blush:
I have implemented the functionality in konva :+1:

1 Like

Hello!

I have put the code in my document and for some reason the animation effect is not applied to my cursor. I think my javascript isn’t reading it properly.

If I have other elements in my javascript can these affect my code ?

You can see my code here : http://pasted.co/05a08bf1

Peter - so sorry for having missed this! Are you still having issues?

We good! I solved it, now I want to link an image instead of the circle which shouldn’t be that hard?

I also want to add a function where you can add your own image (face) as the cursor, is this possible?

Totally doable. Do you need this functionality to be inside the canvas? It may be easier to do this if it is entirely on the DOM.