本文实例讲述了jQuery实现单击弹出Div层窗口效果。分享给大家供大家参考。具体如下:
这是一款jquery实现的可拖动可关闭的弹出框效果,网上已经有很多类似效果了,网页上实现这种效果其实并不难,现在又有了jquery让我们用,更方便了,本代码演示了在CSS代码、JavaScript代码和HTML三者结合的情况下,如何实现一个可关闭的弹出窗口,鼠标点击关闭按钮后将其关闭,然后会显示打开按钮,单击这个按钮即弹出这个层窗口。
运行效果截图如下:
在线演示地址如下:
http://demo.jb51.net/js/2015/js-close-able-alert-dlg-style-codes/
具体代码如下:
<!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>windows</title> <style> #main{position: absolute;top: 10%;left: 10%;} #title{width: 500px;height: 19px;border-top: #85ABE4 1px solid;border-right: #222 1px solid;border-left: #85ABE4 1px solid;border-bottom: none;background: #5B8BD9;} #content{border: #85ABE4 1px solid;border-top: none;width: 500px;height: 300px;} #content img{width: 500px;height: 300px;} #off{float: right;cursor: pointer;} .none{display: none;} .show{display: block;} #open{background: #fff;border: #555 1px solid;height: 13px;width: 50px;position: absolute;left: 50px;top: 400px;cursor: pointer;} #open marquee{font-size: 12px;color: #555;} #img{background: url(images/s.jpg) no-repeat;float: right;width: 49px;height: 19px;} #img: hover{background: url(images/sh.jpg) no-repeat;} #ten{float: left;width: 400px;} </style> <script type="text/javascript" src="/UploadFiles/2021-04-02/jquery-1.6.2.min.js">希望本文所述对大家的jQuery程序设计有所帮助。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“jQuery实现单击弹出Div层窗口效果(可关闭可拖动)”评论...