`
micc010
  • 浏览: 71636 次
  • 性别: Icon_minigender_1
  • 来自: 广西
社区版块
存档分类
最新评论

网页消息提示

    博客分类:
  • js
阅读更多
1.
<SCRIPT language=JavaScript>  

function CLASS_MSN_MESSAGE(id,width,height,caption,title,message,target,action){  
    this.id     = id;  
    this.title  = title;  
    this.caption= caption;  
    this.message= message;  
    this.target = target;  
    this.action = action;  
    this.width    = width?width:200;  
    this.height = height?height:120;  
    this.timeout= 350;  
    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(){  
    alert('确定'); 
    this.close = true; 
    this.hide();  
}  
  
/**//*  
*    消息显示方法  
*/  
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=center width='100%'>" + this.caption + "</TD>"  
        str += "<TD style='PADDING-RIGHT: 2px; PADDING-TOP: 2px' vAlign=center 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><A href='javascript:void(0)' hidefocus=true 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();  
    }    
}  
/**//* 
** 设置速度方法 
**/ 
CLASS_MSN_MESSAGE.prototype.speed = function(s){ 
    var t = 1; 
    try { 
        t = praseInt(s); 
    } catch(e){} 
    this.speed = t; 
} 
/**//* 
** 设置步长方法 
**/ 
CLASS_MSN_MESSAGE.prototype.step = function(s){ 
    var t = 10; 
    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){} 
} 

var MSG1 = new CLASS_MSN_MESSAGE("aa",200,120,"短消息提示:","您有1个短消息","今天请我吃饭哈");  
    MSG1.rect(null,null,null,screen.height-30); 
    MSG1.speed    = 25; 
    MSG1.step    = 2;   
    MSG1.show();  
  
  
</SCRIPT> 



2.
<html>
 <head>
  <title>HTMLPage1</title>
  <meta name="vs_defaultClientScript" content="JavaScript">
  <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
  <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
  <meta name="ProgId" content="VisualStudio.HTML">
  <meta name="Originator" content="Microsoft Visual Studio .NET 7.1">
 </head>
 
 <script language =javascript>
   var titlePopup
   var len;
   
   function InitMsgBox()
   { len = 0;
    titlePopup=window.createPopup();
    var titlePopupBody = titlePopup.document.body;
    titlePopupBody.style.border ="solid black 1px";
    var titleContent = "";
    titleContent = titleContent + "<table cellPadding='5' bgcolor='#65c1ff' width='100%' height='100%' border=0 cellspacing=0 cellpadding=0>";
    titleContent = titleContent + "<tr><td align=center><font size = 2>消息提醒</font></td></tr>";
    titleContent = titleContent + "<tr><td><font size = 2>内容</td></font></tr>";
    titleContent = titleContent + "<tr><td><font size = 2>内容</td></font></tr>";
    titleContent = titleContent + "<tr><td><font size = 2>日期</td></font></tr>";
    titleContent = titleContent + "</table>";    
    titlePopupBody.innerHTML = titleContent;
         
    ShowMsgBox();
   }
      
   function MsgBox()
   { 
    len += 4;      
    if (len > 110)
    {   
     window.clearInterval(tID);     
    }        
    else
    {//170固定了消息提示框的宽度
     titlePopup.show(document.body.clientWidth - 170, document.body.clientHeight - len, 170, len, top.document.body); 
    }    
   }
   
   var tID
   function ShowMsgBox()
   {
    tID = window.setInterval("MsgBox()",15);    
   }
 </script>
 
 <body MS_POSITIONING="GridLayout">
  <INPUT onclick="InitMsgBox()" id="Button1" style="Z-INDEX: 101; LEFT: 296px; POSITION: absolute; TOP: 344px" type="button"
   value="Button" name="Button1">
 </body>
</html>
分享到:
评论

相关推荐

    网页消息提示控件,支持多种风格!

    超棒的网页消息提示控件,支持多种风格! 举例: 弹出一个对话框(其中handler为灵活多变的回调函数): ymPrompt.confirmInfo('信息确认框功能测试',null,null,null,handler)

    网页提示音

    网页提示音是网络应用中一种常见且重要的交互设计元素,特别是在办公自动化(OA)系统中。当用户接收到新消息或者其他重要通知时,系统通过播放特定的提示音来吸引用户的注意力,确保用户不会错过关键信息。这种功能...

    微信网页版消息提示音

    微信网页版消息提示音,简洁悦耳的声音,适合下载做手机铃声哦~

    带提示音的jQuery消息提示框插件

    jQuery-notify是一款专为网页消息提示设计的jQuery插件。它提供了一种高效、直观的方式,向用户展示通知信息,同时具备播放提示音的功能,增强用户的感知。这种插件在现代网页应用中非常常见,用于提醒用户关键的...

    jQuery网页顶部消息提示框插件.rar_dearem6_frozeneew_jQuery网页顶部消息提示框插件

    《jQuery网页顶部消息提示框插件的实现与应用》 在网页开发中,为了提供良好的用户体验,消息提示框是不可或缺的一部分。"jQuery网页顶部消息提示框插件"是一款旨在简化开发者工作,提升用户交互体验的实用工具。这...

    网页模板——基于jQuery Tipso插件实现消息提示框特效源码.zip

    【网页模板——基于jQuery Tipso插件实现消息提示框特效源码】 在网页设计与开发中,用户交互体验是至关重要的。为了提升用户体验,我们常常需要在用户操作后提供反馈,比如点击按钮后的提示信息、表单验证错误等。...

    网页右下角弹出消息的JS提示框

    通过本文介绍的 `CLASS_MSN_MESSAGE` 类及其相关方法,我们不仅了解了如何在网页右下角添加一个弹出式消息提示框,还学习了如何控制其显示、隐藏及响应用户的操作。这对于开发具有动态交互功能的网站来说非常有用。

    ajax实现网页消息声音提醒

    用最原始方法写的,没用任何js框架,便于移植,一看就懂。解压后有5个文件,都导入tomcat,main.html和submit.jsp为主要测试页面,message.wav为测试用的音频文件,checkmessage...你就会在main.html上听到消息提示了。

    JS实时弹出新消息提示框并有提示音响起的实现代码

    本文介绍的内容涉及到在网页中实现新消息提示框的弹出和提示音响起的功能。实现这一功能主要依靠JavaScript(JS)和AJAX技术,以及音频播放和动态显示新消息提示框的方法。 知识点一:AJAX技术 AJAX(Asynchronous ...

    网页提示音demo

    网页提示音是网络应用中常用的一种交互设计,用于提醒用户有新的消息、操作反馈或者其他重要信息。在网页中实现提示音通常涉及到音频处理技术、HTML5的Audio API以及JavaScript编程。下面将详细介绍这些知识点。 ...

    jquery实现页面右下角消息提示框

    **jQuery 实现页面右下角消息提示框** 在网页设计中,实时反馈用户操作状态或者显示重要信息是非常关键的一环。jQuery,一个流行的JavaScript库,提供了丰富的功能来简化这一过程。本教程将深入探讨如何利用jQuery...

    网页上弹出消息提示窗口

    Asp.net2.0弹出对话框控件 1:动画方式弹出,就像MSN的提示框 2:漂亮,详细见配图 3:还可以再在开一个更加详细的内容网页 4:自动关闭,无需手工确认那个ok 5:示例包括C#和VB两个版本,popUp的...

    消息框,,,网页消息框收集

    本文将深入探讨网页消息框的相关知识点,包括其类型、使用场景、实现方式以及最佳实践。 首先,消息框通常分为几种类型: 1. **警告消息框**:这种消息框通常用于提醒用户可能会发生的问题,但不会阻止用户继续...

    两款网页右下角消息提示框 兼容多个浏览器

    在网页设计中,用户体验是至关重要的,而消息提示框作为与用户交互的一种方式,起着传递信息、反馈操作结果的关键作用。"两款网页右下角消息提示框 兼容多个浏览器"是一个关于如何在网页中实现高效且兼容性良好的...

    管理系统网页版消息提示

    系统消息提示在 浏览器 的右下角爬出层

    很清爽的html5消息提示框

    在这个案例中,我们可以使用`&lt;dialog&gt;`元素来创建一个自定义的消息提示框。`&lt;dialog&gt;`元素是HTML5中的一个可交互对话框,它可以用于创建弹出窗口或消息框,而且可以自定义样式,从而摆脱了浏览器默认的样式限制。 `...

    jQuery网页顶部消息提示框插件.zip

    jQuery网页顶部消息提示框插件是一款提示消息3秒后自动消失,成功消息1.5秒后自动消失,失败消息2秒后自动消失,加载消息不会自动消失,强制隐藏消息等提示框代码。 jQuery网页顶部消息提示框插件 截图

    jQuery网页顶部消息提示框插件

    在网页开发中,用户交互体验是至关重要的,而消息提示框则是提升用户体验的重要工具之一。jQuery作为一款广泛使用的JavaScript库,提供了丰富的功能来简化DOM操作和事件处理,其中包括创建动态和自定义的消息提示框...

    jQuery消息提示框插件点击调用.zip

    总结来说,“jQuery消息提示框插件点击调用”提供了一种便捷的方式来创建和控制网页上的提示框,通过简单的jQuery代码就能实现多种效果,极大地提高了开发效率和用户体验。开发者可以结合“说明.htm”中的指南和...

    asp.net 网页右下角弹出消息提示对话框(最小化提示框时带有小图标闪烁效果)

    在标题和描述中提到的“asp.net 网页右下角弹出消息提示对话框(最小化提示框时带有小图标闪烁效果)”,这是一种常见的交互设计,用于吸引用户的注意力,即使他们在浏览其他窗口或应用时也能注意到这些重要的消息。...

Global site tag (gtag.js) - Google Analytics