时间:2021-07-01 10:21:17 帮助过:8人阅读
效果图:
源码:
1.demo.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>自定义弹出窗口</title> <script type="text/javascript" src="js/myLayer.js"></script> <style type="text/css"> button{ width: 50px; height: 50px; border: 1px solid blue; background-color: blue; color: red; border-radius: 5px; -webkit-box-shadow: 2px 2px 2px gray; -moz-box-shadow: 2px 2px 2px gray ; box-shadow: 2px 2px 2px gray ; } button:hover{ background-color: green; cursor: pointer; } </style> <script type="text/javascript"> function openWindow() { new MyLayer({ top:"10%", left:"10%", width:"80%", height:"80%", title:"我的标题", content:"操作成功" }).openLayer(); } </script> </head> <body> <button type="button" onclick="openWindow()">打开弹窗</button> </body> </html>
2.myLayer.js
相关推荐:
jQuery怎么做出弹窗效果
实例分析如何简单实现jQuery弹窗效果
简单实现jQuery弹窗方法
以上就是javascript、html5、css3自定义弹出窗口的详细内容,更多请关注Gxl网其它相关文章!