JSP如何实现页面右下角消息弹框

无论做什么,请记住都是为你自己而做,这样就毫无怨言!今天,我为自己而活!今天,又是美丽的一天!早安,朋友!

JSP页面上通过JS实现消息弹出框,样式可根据要求修改,这边只是一个简单的示范例子,自定义了两条消息,弹框效果如下

JSP页面

<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@page import="java.util.*"%>
<html>
 <head>
 <style type="text/css">
 #winpop { width:250px; height:0px; position:absolute; right:0; bottom:0; border:1px solid grey; margin:0; padding:1px; overflow:hidden; display:none; background:#FFFFFF}
 #winpop .title { width:100%; height:20px; line-height:20px; background:#0AB0FF ; font-weight:bold; text-align:center; font-size:12px;color:white}
 #winpop .con { width:100%; height:360px; line-height:80px; font-weight:bold; font-size:12px; color:#FF0000; text-decoration:underline; text-align:center}
 .close { position:absolute; right:4px; top:-1px; color:#FFFFFF; cursor:pointer}
 </style>
 </head>
<% 
 //未读消息unreadList根据实际情况取
 List<Map> unreadList = new ArrayList<Map>();
 Map<String,String> map1=new HashMap<String,String>();
 map1.put("msgId","1");
 map1.put("msgContent","message111111");
 unreadList.add(map1);
 Map<String,String> map2=new HashMap<String,String>();
 map2.put("msgId","2");
 map2.put("msgContent","message222222");
 unreadList.add(map2);
 int num=unreadList.size();
%>
 <body>
 <script language="javascript" type="text/javascript">
 window.onload = function tanchuang() { //加载
 document.getElementById('winpop').style.height = '0px';//要初始化这个高度,虽然CSS里已经初始化了
 
 setTimeout("tips_pop()",0); //调用tips_pop()这个函数
 }
 
 function tips_pop() {
 var MsgPop = document.getElementById("winpop");//获取窗口这个对象,即ID为winpop的对象
 var popH = parseInt(MsgPop.style.height);//用parseInt将对象的高度转化为数字,以方便下面比较
 
 if (popH == 0) { //如果窗口的高度是0
 MsgPop.style.display = "block";//那么将隐藏的窗口显示出来
 show = setInterval("changeH('up')", 2);//开始以每0.002秒调用函数changeH("up"),即每0.002秒向上移动一次
 } else { //否则
 hide = setInterval("changeH('down')", 2);//开始以每0.002秒调用函数changeH("down"),即每0.002秒向下移动一次
 }
 }
 function changeH(str) {
 var MsgPop = document.getElementById("winpop");
 var popH = parseInt(MsgPop.style.height);
 if (str == "up") { //如果这个参数是UP
 if (popH <= 100) { //如果转化为数值的高度小于等于100
 MsgPop.style.height = (popH + 4).toString() + "px";//高度增加4个象素
 } else {
 clearInterval(show);//否则就取消这个函数调用,意思就是如果高度超过100象度了,就不再增长了
 }
 }
 if (str == "down") {
 if (popH >= 4) { //如果这个参数是down
 MsgPop.style.height = (popH - 4).toString() + "px";//那么窗口的高度减少4个象素
 } else { //否则
 clearInterval(hide); //否则就取消这个函数调用,意思就是如果高度小于4个象度的时候,就不再减了
 MsgPop.style.display = "none"; //因为窗口有边框,所以还是可以看见1~2象素没缩进去,这时候就把DIV隐藏掉
 }
 }
 }
 </script>
 
 <%if(num>0){ %>
 <div id="winpop">
 <div class="title" >系统信息<br>
 共有<font color="red"><big><%=num %></big></font>条未读消息
 <span class="close" οnclick="tips_pop()">X</span></div>
 <%for(int i=0;i<num;i++) { %>
 <!-- 点击信息标题链接到信息明细,传递信息编号参数 -->
 <a rel="nofollow noopener noreferrer" href="/XXXAction.do?msgId=<%=unreadList.get(i).get("msgId") %>">
 <%if(String.valueOf(unreadList.get(i).get("msgContent")).length()>16) {%>
 <%=String.valueOf(unreadList.get(i).get("msgContent")).substring(0,16)+"..." %>
 <%} else{ %>
 <%=String.valueOf(unreadList.get(i).get("msgContent")) %>
 <%} %>
 </a><br>
 <%
 if(i>=1){//最多显示两条
 break;
 }
 } %>
 <center>
 <!-- 点击查看更多未读消息 -->
 <a rel="nofollow noopener noreferrer" href="/XXXAction.do %>" ><font color="red">更多未读消息...</font></a></center>
 </div>
 <%} %>
 </body>
</html>

到此这篇关于JSP如何实现页面右下角消息弹框就介绍到这了。不要责怪自己的轻狂,那是年轻最明亮的标志,不要自卑自己的浅薄,经过岁月的打磨,你会得到满载的智慧和经验。更多相关JSP如何实现页面右下角消息弹框内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

您可能有感兴趣的文章
JSP如何实现简单网页计算器

JSP动态如何实现web网页登陆和注册功能

JSP如何实现文件上传功能

SSM框架整合JSP中集成easyui前端ui项目开发示例详解

教你怎么用JSP统计网站访问人数