Javascript Tooltips, Popups, Captions - BoxOver  

Go Back   Javascript Tooltips, Popups, Captions - BoxOver > Javascript > Example scripts
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Display Modes
  #1  
Old 10-25-2005, 09:21 PM
olly olly is offline
Administrator
 
Join Date: Jul 2005
Posts: 82
Default Example 1 - Box (div) following mouse pointer

The example below demonstrates basic event handling and cross browser code (I've tested in IE and FF, doesn't work in Opera some subtle changes are needed for this).

Code:
<html> <body style="font-family:arial;font-size:12px" onmousemove="updatebox(event)" onclick="stopstartbox()"> <div id="mydiv" style="position:absolute;width:200px;height:150px;background:#ABABAB;border:1px solid #000000"></div> <b>Move your mouse around the screen. The box will follow. Single click to start/stop the box following the cursor.</b> <script> boxmove=true; function stopstartbox() { boxmove=!boxmove; } function updatebox(evt) { if (boxmove) { mouseX=evt.pageX?evt.pageX:evt.clientX; mouseY=evt.pageY?evt.pageY:evt.clientY; document.getElementById('mydiv').style.left=mouseX; document.getElementById('mydiv').style.top=mouseY; } } </script> </body> </html>
Click below to see in action
http://boxover.swazz.org/javascript_...div_FF_IE.html
Reply With Quote
  #2  
Old 12-31-2006, 07:24 AM
manonivas manonivas is offline
Junior Member
 
Join Date: Dec 2006
Posts: 1
Default Need cool dhtml tooltip script

Om Shanti!
N.Manohara Kurup,
Thoppil House, Pollethai P.O,
Mararikulam,
Alappuzha- 688567, Kerala, India.
Tel: 0478- 2865432
E-mail: mano@bizhat.com
Web: http://mano.bizhat.com



Sir,
Received your address from http://boxover.swazz.org/forum/newre...oquote=1&p=876.

Please send me a "cool dhtml tooltip script" which supports.
Also I wish make the home page of my new proposed website with an animated rain fal image.

If you have anyone of that, please send me a beautiful one.

Pl. send your reply to my email: manonivas@yahoo.com or as a reply for this message.

Regards
N. Manohara Kurup
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT. The time now is 06:06 AM.