首页 > 语言 > JavaScript > 正文

javascript实现简单的页面右下角提示信息框

2024-05-06 16:24:09
字体:
来源:转载
供稿:网友

本文给大家分享的是使用javascript实现简单的页面右下角提示信息框的方法和示例代码,有需要的小伙伴可以参考下。

由于之前找到一个开源的很好用,可以固定在浏览器的右下角;兼容性也很好;加上之后影响到应用的一个小功能点,决定重写一个;这个只能固定在当前页面的右下加,系统是上下结构满足需求,没在继续扩展;

两个函数:

1.lay -- 设置提示框高宽(可选)

2.show -- 设置标题,内容,和停留时间

notice.js

 

 
  1. var time; 
  2. var delayTime; 
  3. $(function(){ 
  4. // 增加浮动DIV 
  5. $('body').append("<div id='notice' onselectstart='return false'><span class='notice_title'></span><span class='cbtn'>[关闭]</span><div class='notice_content'></div></div>"); 
  6.  
  7. // 更改样式 
  8. $('#notice').css({right:"0",bottom:"0",cursor:"default",position:"fixed","background-color":"#CFDEF4",color:"#1F336B","z-index":"999",border:"1px #1F336B solid",margin:"2px",padding:"10px","font-weight":"bold","line-height":"25px",display:"none"}); 
  9. $('#notice .cbtn').css({color:"#FF0000",cursor:"pointer","padding-right":"5px",float:"right",position:"relative"}); 
  10. $('#notice .notice_content').css({margin:"3px","font-weight":"normal",border:"1px #B9C9EF solid","line-height":"20px","margin-bottom":"10px",padding:"10px"}); 
  11.  
  12. /* 绑定事件*/ 
  13. $('#notice').hover( 
  14. function(){ 
  15. $(this).stop(true,true).slideDown(); 
  16. clearTimeout(time); 
  17. }, 
  18. function(){ 
  19. time = setTimeout('_notice()',delayTime); 
  20. ); 
  21.  
  22. //绑定关闭事件 
  23. $('.cbtn').bind('click',function(){ 
  24. $('#notice').slideUp('fast'); 
  25. clearTimeout(time); 
  26. }); 
  27. }); 
  28. $.extend({ 
  29. lay:function(_width,_height){ 
  30. $('#notice').css({width:_width,height:_height}); 
  31. }, 
  32. show:function(_title,_msg,_time){ 
  33. delayTime = _time; 
  34. $('.notice_title').html(_title); 
  35. $('.notice_content').html(_msg); 
  36. $('#notice').slideDown(2000); 
  37. time = setTimeout('_notice()',delayTime); 
  38. }, 
  39. }); 
  40. function _notice(){ 
  41. $('#notice').slideUp(2000); 

index.html

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  2. <html> 
  3. <head> 
  4. <title>index.html</title> 
  5.  
  6. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"/> 
  7. <meta http-equiv="description" content="this is my page"/> 
  8. <meta http-equiv="content-type" content="text/html; charset=GBK"/> 
  9.  
  10. <!--<link rel="stylesheet" type="text/css" href="./styles.css">--> 
  11.  
  12. </head> 
  13.  
  14. <body onload='initPage();'
  15. </body> 
  16. <script type="text/javascript"
  17. function initPage(){ 
  18. var returnMsg = "<p>信息1 jquery-1.7.2.min.js</p><p>信息2 notice.js</p><p>信息3</p>"
  19. $.show('提示信息',returnMsg,10000); 
  20. </script> 
  21. <script src="jquery-1.7.2.min.js" type="text/javascript" ></script> 
  22. <script src="notice.js" type="text/javascript" ></script> 
  23. </html> 

以上所述就是本文的全部内容了,希望大家能够喜欢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选