`
猪↘專屬|华
  • 浏览: 164049 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

页面右下角弹出消息提示框,显示报警信息

    博客分类:
  • ajax
阅读更多

<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ include file="/common/include.jspf"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>首页</title>   
    <link type="text/css" rel="Stylesheet" href="../css/index.css" />
    <script type="text/javascript" src="../css/JScript.js"></script>   
</head>
<SCRIPT language="javascript"> 
/**//* 
*    消息构造 
*/ 
function CLASS_MSN_MESSAGE(id,width,height,caption,title,message1,message,target,action){ 
    this.id     = id; 
    this.title  = title; 
    this.caption= caption;
 this.message1 = message1;
    this.message= message; 
    this.target = target; 
    this.action = action; 
    this.width    = width?width:200; 
    this.height = height?height:120; 
    this.timeout= 150; 
    this.speed    = 20;
    this.step    = 1;
    this.right    = screen.width -1; 
    this.bottom = screen.height;
    this.left    = this.right - this.width;
    this.top    = this.bottom - this.height;
    this.timer    = 0;
    this.pause    = false;
    this.close    = false;
    this.autoHide    = true;

 
/**//* 
*    隐藏消息方法 
*/ 
CLASS_MSN_MESSAGE.prototype.hide = function(){ 
    if(this.onunload()){ 

        var offset  = this.height>this.bottom-this.top?this.height:this.bottom-this.top;
        var me  = this; 

        if(this.timer>0){  
            window.clearInterval(me.timer); 
        } 

        var fun = function(){ 
            if(me.pause==false||me.close){
                var x  = me.left;
                var y  = 0;
                var width = me.width;
                var height = 0;
                if(me.offset>0){
                    height = me.offset;
                }
    
                y  = me.bottom - height;
    
                if(y>=me.bottom){
                    window.clearInterval(me.timer); 
                    me.Pop.hide(); 
                } else {
                    me.offset = me.offset - me.step; 
                }
                me.Pop.show(x,y,width,height);   
            }            
        }; 

        this.timer = window.setInterval(fun,this.speed)     
    } 
}; 
 
/**//* 
*    消息卸载事件,可以重写 
*/ 
CLASS_MSN_MESSAGE.prototype.onunload = function() { 
    return true; 
}; 
/**//* 
*    消息命令事件,要实现自己的连接,请重写它 

*/ 
CLASS_MSN_MESSAGE.prototype.oncommand = function(){ 
    //this.close = true;
    this.hide(); 
  window.open("../oilalarm/oilAlarmAction!selectOilAlarmByFlag.action");
};
/**//* 
*    消息显示方法 
*/ 
CLASS_MSN_MESSAGE.prototype.show = function(){ 

    var oPopup = window.createPopup(); //IE5.5+ 
   
    this.Pop = oPopup; 
 
    var w = this.width; 
    var h = this.height; 
 
    var str = "<DIV style='BORDER-RIGHT: #455690 1px solid; BORDER-TOP: #a6b4cf 1px solid; Z-INDEX: 99999; LEFT: 0px; BORDER-LEFT: #a6b4cf 1px solid; WIDTH: " + w + "px; BORDER-BOTTOM: #455690 1px solid; POSITION: absolute; TOP: 0px; HEIGHT: " + h + "px; BACKGROUND-COLOR: #c9d3f3'>" 
        str += "<TABLE style='BORDER-TOP: #ffffff 1px solid; BORDER-LEFT: #ffffff 1px solid' cellSpacing=0 cellPadding=0 width='100%' bgColor=#cfdef4 border=0>" 
        str += "<TR>" 
        str += "<TD style='FONT-SIZE: 12px;COLOR: #0f2c8c' width=30 height=24></TD>" 
        str += "<TD style='PADDING-LEFT: 4px; FONT-WEIGHT: normal; FONT-SIZE: 12px; COLOR: #1f336b; PADDING-TOP: 4px' valign=middle width='100%'>" + this.caption + "</TD>" 
        str += "<TD style='PADDING-RIGHT: 2px; PADDING-TOP: 2px' valign=middle align=right width=19>" 
        str += "<SPAN title=关闭 style='FONT-WEIGHT: bold; FONT-SIZE: 12px; CURSOR: hand; COLOR: red; MARGIN-RIGHT: 4px' id='btSysClose' >×</SPAN></TD>" 
        str += "</TR>" 
        str += "<TR>" 
        str += "<TD style='PADDING-RIGHT: 1px;PADDING-BOTTOM: 1px' colSpan=3 height=" + (h-28) + ">" 
        str += "<DIV style='BORDER-RIGHT: #b9c9ef 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: #728eb8 1px solid; PADDING-LEFT: 8px; FONT-SIZE: 12px; PADDING-BOTTOM: 8px; BORDER-LEFT: #728eb8 1px solid; WIDTH: 100%; COLOR: #1f336b; PADDING-TOP: 8px; BORDER-BOTTOM: #b9c9ef 1px solid; HEIGHT: 100%'>" + this.title + "<BR><BR>" 
        str += "<DIV style='WORD-BREAK: break-all' align=left>"+this.message1+"<A target='main' href='../oilalarm/oilAlarmAction!selectOilAlarmByFlag.action' hidefocus=false id='btCommand'><FONT color=#ff0000>" + this.message + "</FONT></A></DIV>" 
        str += "</DIV>" 
        str += "</TD>" 
        str += "</TR>" 
        str += "</TABLE>" 
        str += "</DIV>" 
 
    oPopup.document.body.innerHTML = str;
   
 
    this.offset  = 0;
    var me  = this; 

    oPopup.document.body.onmouseover = function(){me.pause=true;}
    oPopup.document.body.onmouseout = function(){me.pause=false;}

    var fun = function(){ 
        var x  = me.left;
        var y  = 0;
        var width    = me.width;
        var height    = me.height;

            if(me.offset>me.height){
                height = me.height;
            } else {
                height = me.offset;
            }

        y  = me.bottom - me.offset;
        if(y<=me.top){
            me.timeout--;
            if(me.timeout==0){
                window.clearInterval(me.timer); 
                if(me.autoHide){
                    me.hide();
                }
            }
        } else {
            me.offset = me.offset + me.step;
        }
        me.Pop.show(x,y,width,height);   

    }; 
 
    this.timer = window.setInterval(fun,this.speed)     
 
    
 
    var btClose = oPopup.document.getElementById("btSysClose"); 
 
    btClose.onclick = function(){ 
        me.close = true;
        me.hide(); 
    }; 
 
    var btCommand = oPopup.document.getElementById("btCommand"); 
    btCommand.onclick = function(){ 
        me.oncommand(); 
    };  
  var ommand = oPopup.document.getElementById("ommand"); 
      ommand.onclick = function(){ 
       //this.close = true;
    me.hide(); 
 window.open(ommand.href);
    };  
}; 
/**//*
** 设置速度方法
**/
CLASS_MSN_MESSAGE.prototype.speed = function(s){
    var t = 20;
    try {
        t = praseInt(s);
    } catch(e){}
    this.speed = t;
};
/**//*
** 设置步长方法
**/
CLASS_MSN_MESSAGE.prototype.step = function(s){
    var t = 1;
    try {
        t = praseInt(s);
    } catch(e){}
    this.step = t;
};
 
CLASS_MSN_MESSAGE.prototype.rect = function(left,right,top,bottom){
    try {
        this.left        = left    !=null?left:this.right-this.width;
        this.right        = right    !=null?right:this.left +this.width;
        this.bottom        = bottom!=null?(bottom>screen.height?screen.height:bottom):screen.height;
        this.top        = top    !=null?top:this.bottom - this.height;
    } catch(e){}
};
//===============================================================
//id,width,height,caption,title,message,target,action

//用ajax获得要显示的信息开始
var xmlHttp;
var div;
function createXmlHttpRequest(){
//判断用户所使用的浏览器
 if(window.ActiveXObject){
  xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
 }else if(window.ActiveXObject){
  xmlHttp = new ActiveXObject("Msxml2.XMLHTTP.4.0");
 }else if(window.ActiveXObject){
  xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
 }else if(window.XMLHttpRequest){
  xmlHttp = new XMLHttpRequest();
 }
 }

//用户点击发送请求 登录
function start(){
 createXmlHttpRequest();
 //设置回调函数
 xmlHttp.onreadystatechange=callback;
 var url ="../oilalarm/oilAlarmAction!messageAlarmInfo.action";
 xmlHttp.open("get",url,true);
 xmlHttp.send(null);
}

//回调函数
function callback(){    
 if(xmlHttp.readyState==4){     
  if(xmlHttp.status==200){     
   //处理结果     
   var value=xmlHttp.responseText;
   var msg = value.split(";");
   if(msg[1]>0){//有记录
    var count = msg[1];
    var message=msg[0];   
    var MSG1 = new CLASS_MSN_MESSAGE("aa",200,120,"报警信息提示:","您有"+count+"条报警消息",message,"查看详情"); 
       MSG1.rect(null,null,null,screen.height-50);
       MSG1.speed    = 10;
       MSG1.step    = 5;
       MSG1.show(); 
   }else{
    var count = msg[1];
    var message=msg[0];   
    var MSG1 = new CLASS_MSN_MESSAGE("aa",200,120,"报警信息提示:","您有"+count+"条报警消息",message,"查看详情"); 
       MSG1.rect(null,null,null,screen.height-50);
       MSG1.speed    = 10;
       MSG1.step    = 5;
       MSG1.show();
   }
 
  }
  }
}
</SCRIPT>
<body onload="start()">
   <center>
     <div style=" margin-top:50px; width: 100%">
      <img src="../images/BGS.jpg" />
     </div>
    </center>
</body>
</html>

2
0
分享到:
评论

相关推荐

    wpf 消息提示框(仿QQ左下角提示框)

    本示例“wpf 消息提示框(仿QQ左下角提示框)”旨在模仿QQ应用中的左下角弹出提示功能,这种提示框通常用于快速显示通知信息,而不会打断用户的正常操作流程。 首先,我们要理解WPF的基本概念。WPF是微软.NET ...

    报警信息气泡提示框

    "报警信息气泡提示框"的核心是任务栏通知区(也称为系统托盘或通知区域),位于Windows桌面右下角。在C#中,我们可以使用`System.Windows.Forms.NotifyIcon`类来实现这个功能。这个类允许开发者在任务栏图标旁边显示...

    div弹出模式窗体,消息框样式。

    在网页设计中,"div弹出模式窗体,消息框样式"是一个常见的需求,用于向用户展示重要信息、警告或确认操作。这种技术利用HTML的`&lt;div&gt;`元素结合CSS来创建可定制的对话框,提供了更加丰富和交互性的用户体验。下面...

    asp.net 实现弹出窗口功能

    在 web应用中,比如OA中,经常要用到一些提示,比如EMAIL到达了,就做个象MSN那样的提示框,弹出给用户提示,然后再关闭。在ASP.net 2.0的ajax中,这个现在不难做到了,刚好看到老外的一篇文章,讲解到,下面小结之

    ABB机器人10106故障报警解决办法(图文).docx

    1. 当机器人示教器显示10106故障报警时,首先要确认报警信息,即“到保养时间,应检修机器人”。这是系统自动检测到机器人的维护周期即将或已经结束。 2. 面对报警提示,用户需要点击示教器屏幕右下方的“确认”...

    利德航运通

    - **报警数据声光提示**:当接收到报警数据时,系统会以醒目的符号状态显示目标,并伴有声音提示和弹出车辆信息框。 #### 四、数据库操作功能 数据库操作功能提供了丰富的数据管理和查询手段: - **目标信息查询*...

    GPRS控制卡 软件 GS7020B

    (5) 显示屏扫描接口,6 个接口上排从左至右为 P2_12, P1_12, P1_08; 下排从左至右为 P4_12, P3_12, P3_08。 (6) OE 极性选择跳线 OE_SEL。应与显示单元板和控制卡软件软件配置一 致。 (7) 状态指示灯 (8) 时钟电池...

    仪迪安全性能综合测试仪软件安装包.rar

     5)、保存参数设置点击“确认”,系统会把您设置的测试参数保存下来,并在主界面右下角的显示区显示您的测试参数设置。4、实时测试 根据您设置的启动方式,启动对产品的测试,系统将根据你设置的测试参数对此产品...

    iSee视频监控 v5.2

    多画面实时显示/录像/回放功能,支持多协议云镜控制,支持多种报警盒实现联动报警; 手动录像、连续录像、定时录像、动态录像、事件录像、联动报警录像等多种录像方式; 可以设置每个通道的显示名称; NTSC/...

    超旺软件最新单机版

    零售收款的各功能操作键的设置可在《系统管理》—“系统配置”中的“收银热键”进行设置,在收银时的操作提示,可在收银界面下按F1键弹出提示窗口(窗口界面如下图): 各操作键的说明: 现金收银:在商品条码扫完...

Global site tag (gtag.js) - Google Analytics