DIV+CSS弹出提示框脚本

 

DIV+CSS弹出提示框脚本,效果如下:

2009020910252957.jpg

JS代码如下

ContractedBlock.gif ExpandedBlockStart.gif Code
/*
使用方法:
          直接调用showhint()方法即可,showhint()方法中参数说明:obj为要显示提示信息的控件对象,info为提示内容
          例:
          οnmοuseοver="showhint(this,'这是地球人都知道的东西,没什么好提示的。')"
          οnmοuseοut="hidehintinfo()"
*/
document.write(
"<span id='hintdiv' style='display:none;position:absolute;z-index:500;'></span>");
function showhint(obj,info)
{
    
var top=obj.offsetTop;
    
var showtype="up";
    
var topimg="/ControlsTest/images/hint/hintuptop.gif";
    
var bottomimg="/ControlsTest/images/hint/hintupbottom.gif";
    
var hintimg="/ControlsTest/images/hint/ydot.png";
    
if(top<200)
    {
        showtype
="down";
        topimg
="/ControlsTest/images/hint/hintdowntop.gif";
        bottomimg
="/ControlsTest/images/hint/hintdownbottom.gif";
    }
    showhintinfo(obj,
0,0,'提示',info,0,showtype,topimg,bottomimg,hintimg);
}
function showhintinfo(obj, objleftoffset,objtopoffset, title, info , objheight, showtype ,topimg,bottomimg,hintimg)
{
    
var p = getposition(obj);
    
if((showtype==null)||(showtype ==""))
    {
        showtype 
=="up";
    }
    
//以下是自己修改
    var html=" <div style='position:absolute; visibility: visible; width:271px;z-index:501;'> <p style='margin:0; padding:0;'> <img src='"+topimg+"'/> </p> <div style='overflow:hidden; zoom:1; border-left:1px solid #000000; border-right:1px solid #000000; padding:3px 10px;  text-align:left; word-break:break-all;letter-break:break-all;font: 12px/160% Tahoma, Verdana,snas-serif; color:#6B6B6B; background:#FFFFE1 no-repeat;margin-top:-5px;margin-bottom:-5px;'> <img style='float:left;margin:0 3px 0px 3px;' src='"+hintimg+"' /> <span id='hintinfoup'>"+info+"</span> </div> <p style='margin:0; padding:0;'> <img src='"+bottomimg+"'/> </p> </div> <iframe id='hintiframe' style='position:absolute;z-index:100;width:276px;scrolling:none;' frameborder='0'></iframe>";
    
//以上是自己修改
//
    document.getElementById('hintiframe'+showtype).style.height= objheight + "px";
//
    var frame;
//
    frame=document.getElementById('hintiframe'+showtype).style.height;
//
    document.getElementById('hintinfo'+showtype).innerHTML = info;
//
    document.getElementById('hintdiv'+showtype).style.display='block';
    document.getElementById('hintdiv').style.display='block';

        
if(objtopoffset == 0)
        {
            document.getElementById(
"hintdiv").innerHTML=html;
            
if(showtype=="up")
            {
                document.getElementById(
'hintiframe').style.height= objheight + "px";
                document.getElementById(
'hintdiv').style.top=(p['y']-document.getElementById('hintinfo'+showtype).offsetHeight-43)+"px";
            }
            
else
            {
                document.getElementById(
'hintiframe').style.height= objheight + "px";
                document.getElementById(
'hintdiv').style.top=p['y']+obj.offsetHeight+3+"px";
            }
        }
        
else
        {
            document.getElementById(
'hintdiv').style.top=p['y']+objtopoffset+"px";
        }

    document.getElementById(
'hintdiv').style.left=p['x']+objleftoffset+"px";
}
    
function hidehintinfo()
{
    document.getElementById(
'hintdiv').style.display='none';
//    document.getElementById('hintdivdown').style.display='none';
}
function getposition(obj)
{
    
var r = new Array();
    r[
'x'= obj.offsetLeft;
    r[
'y'= obj.offsetTop;
    
while(obj = obj.offsetParent)
    {
        r[
'x'+= obj.offsetLeft;
        r[
'y'+= obj.offsetTop;
    }
    
return r;
}

 

 

ContractedBlock.gif ExpandedBlockStart.gif Code
/*
使用方法:
          直接调用showhint()方法即可,showhint()方法中参数说明:obj为要显示提示信息的控件对象,info为提示内容
          例:
          οnmοuseοver="showhint(this,'这是地球人都知道的东西,没什么好提示的。')"
          οnmοuseοut="hidehintinfo()"
*/
document.write(
"<span id='hintdiv' style='display:none;position:absolute;z-index:500;'></span>");
function showhint(obj,info)
{
    
var top=obj.offsetTop;
    
var showtype="up";
    
var topimg="/ControlsTest/images/hint/hintuptop.gif";
    
var bottomimg="/ControlsTest/images/hint/hintupbottom.gif";
    
var hintimg="/ControlsTest/images/hint/ydot.png";
    
if(top<200)
    {
        showtype
="down";
        topimg
="/ControlsTest/images/hint/hintdowntop.gif";
        bottomimg
="/ControlsTest/images/hint/hintdownbottom.gif";
    }
    showhintinfo(obj,
0,0,'提示',info,0,showtype,topimg,bottomimg,hintimg);
}
function showhintinfo(obj, objleftoffset,objtopoffset, title, info , objheight, showtype ,topimg,bottomimg,hintimg)
{
    
var p = getposition(obj);
    
if((showtype==null)||(showtype ==""))
    {
        showtype 
=="up";
    }
    
//以下是自己修改
    var html=" <div style='position:absolute; visibility: visible; width:271px;z-index:501;'> <p style='margin:0; padding:0;'> <img src='"+topimg+"'/> </p> <div style='overflow:hidden; zoom:1; border-left:1px solid #000000; border-right:1px solid #000000; padding:3px 10px;  text-align:left; word-break:break-all;letter-break:break-all;font: 12px/160% Tahoma, Verdana,snas-serif; color:#6B6B6B; background:#FFFFE1 no-repeat;margin-top:-5px;margin-bottom:-5px;'> <img style='float:left;margin:0 3px 0px 3px;' src='"+hintimg+"' /> <span id='hintinfoup'>"+info+"</span> </div> <p style='margin:0; padding:0;'> <img src='"+bottomimg+"'/> </p> </div> <iframe id='hintiframe' style='position:absolute;z-index:100;width:276px;scrolling:none;' frameborder='0'></iframe>";
    
//以上是自己修改
//
    document.getElementById('hintiframe'+showtype).style.height= objheight + "px";
//
    var frame;
//
    frame=document.getElementById('hintiframe'+showtype).style.height;
//
    document.getElementById('hintinfo'+showtype).innerHTML = info;
//
    document.getElementById('hintdiv'+showtype).style.display='block';
    document.getElementById('hintdiv').style.display='block';

        
if(objtopoffset == 0)
        {
            document.getElementById(
"hintdiv").innerHTML=html;
            
if(showtype=="up")
            {
                document.getElementById(
'hintiframe').style.height= objheight + "px";
                document.getElementById(
'hintdiv').style.top=(p['y']-document.getElementById('hintinfo'+showtype).offsetHeight-43)+"px";
            }
            
else
            {
                document.getElementById(
'hintiframe').style.height= objheight + "px";
                document.getElementById(
'hintdiv').style.top=p['y']+obj.offsetHeight+3+"px";
            }
        }
        
else
        {
            document.getElementById(
'hintdiv').style.top=p['y']+objtopoffset+"px";
        }

    document.getElementById(
'hintdiv').style.left=p['x']+objleftoffset+"px";
}
    
function hidehintinfo()
{
    document.getElementById(
'hintdiv').style.display='none';
//    document.getElementById('hintdivdown').style.display='none';
}
function getposition(obj)
{
    
var r = new Array();
    r[
'x'= obj.offsetLeft;
    r[
'y'= obj.offsetTop;
    
while(obj = obj.offsetParent)
    {
        r[
'x'+= obj.offsetLeft;
        r[
'y'+= obj.offsetTop;
    }
    
return r;
}

转载于:https://www.cnblogs.com/andiki/archive/2009/02/09/1386648.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
美化PHP弹出提示框可以通过使用CSS样式和JavaScript脚本来实现。以下是一个简单的方法: 首先,创建一个HTML文档,并包含一个按钮,用于触发弹出提示框。在按钮上添加一个JavaScript函数的点击事件,例如: ```html <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="style.css"> <script src="script.js"></script> </head> <body> <button onclick="showAlert()">点击弹出提示框</button> </body> </html> ``` 然后,创建一个CSS样式表(style.css),用于美化提示框的外观,例如: ```css .alert { width: 200px; height: 100px; background-color: #f2f2f2; border: 1px solid #ccc; border-radius: 5px; text-align: center; line-height: 100px; font-size: 20px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } ``` 接下来,创建一个JavaScript文件(script.js),编写showAlert函数,用于弹出提示框,例如: ```javascript function showAlert() { var alertDiv = document.createElement("div"); alertDiv.className = "alert"; alertDiv.innerHTML = "这是一个美化的提示框!"; document.body.appendChild(alertDiv); setTimeout(function(){ alertDiv.remove(); }, 2000); } ``` 在函数中,我们首先创建一个新的div元素,并设置其class为"alert",然后将提示框的内容设置为"这是一个美化的提示框!"。接着,将该div元素添加到文档的body元素中。setTimeout函数用于在指定时间后移除该提示框。 最后,在同一目录下创建一个空的style.css和script.js文件,然后将以上代码粘贴到相应的文件中。运行HTML文件,点击按钮就能够看到一个美化的提示框出现在屏幕上,提示框会在2秒后自动关闭。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值