Login Register


How to make a pop up bubble? filter_list
Author
Message
How to make a pop up bubble? #1
Hey, I've been trying to figure out how to make a pop up message appear where the mouse is when the user hovers over a specific area of the webpage, I don't know if this would be CSS or JavaScript but either way it would be great if I could get this worked out by 11:00 am Thursday. Thanks for the support! ^_^

Reply

RE: How to make a pop up bubble? #2
Is this something you're looking for?

Reply

RE: How to make a pop up bubble? #3
Its called "Javascript onMouseover"
It simply executes a javascript when you move your mouse over the link/script.

FOR HTML>

Code:
<element onmouseover="SomeJavaScriptCode">

FOR JAVASCRIPT>


Code:
object.onmouseover=function(){SomeJavaScriptCode};

Example:

Code:
<img onmouseover="bigImg(this)" src="smiley.gif" alt="Smiley">

Source: W3Schools
- Trust is your weakness....




Reply

RE: How to make a pop up bubble? #4
Correct this can be done with JavaScript. I think @troy_odyssey34 is looking for a bubble look not a boxed look. You will need to download the js files and add the file to your html in the head section and give it a class or an id or whatever you chose. Sorry if this sounds complicated, its actually really easy to do.

*Edit
This may be of interest to you: http://www.webdesignermag.co.uk/blog/int...query-css/
[Image: ATrkNwQ.jpg]

Reply

RE: How to make a pop up bubble? #5
Thank you all for your help, it is much appreciated! :Grin:

Reply







Users browsing this thread: 1 Guest(s)