I have 2 canvases. One, the main canvas. Upon which all is drawn, Second, the speech bubble canvas (balloon). Which displays information about specific regions on my main canvas upon client clicks.
I was playing around with my canvas after introducing the speech bubble and came across an issue.
This is a simple code that shows how the speech bubble is introduced:-
http://jsfiddle.net/m1erickson/AJvkN/
My canvas is a timeline, and is scrollable; has historical events plotted on it. Once a user clicks on an event a speech bubble appears.
Now what I don't want to happen is, when a client clicks on the canvas, a speech bubble appears and then scrolls, the speech bubble moves to a new position on the scrolled image, however still showing information about the previous location.
For this we have the hideballoon () which assigns css property left : -200. However this still causes inconsistencies. For example if I drag the canvas from left to right, the balloon doesn't disappear with the scroll, but reappears in a new position.
there is a .remove() function $("#balloon").remove()
This successfully removes the balloon however, the issue with this is:- it removes the balloon completely, and no future clicks will pop up any more speech bubbles. This is not what I want. I want something dynamic.
Click on event >> speech bubble appears >> scroll canvas >> speech bubble disappears >> click on canvas >> speech bubble pertaining to new click appears back >> and so on and so forth.
[Edited]
Use .show() and .hide() to keep the balloon out of your way when its not needed
When the user scrolls the window then just hide the balloon.
I assume you're scrolling the window instead of the canvas. If you're scrolling the canvas, just use $("#canvas").scroll( ... ) instead.
So when you need the balloon:
And hide the balloon when the user clicks on it or when the window scrolls:
Here’s working sample code and a Fiddle: http://jsfiddle.net/m1erickson/uWHkv/