您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要介绍了jquery如何实现弹窗效果,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
本文实例为大家分享了jquery实现系统提示框的具体代码,供大家参考,具体内容如下
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <script src="js/jquery-1.11.1.js"></script> <title>弹窗效果</title> <style> *{ margin: 0;padding: 0;list-style: none} .mask{background-color:rgba(0,0,0,0.2); width:100%; height:100%;position:fixed;top:0;left:0;} .prompt_box{width:400px;height:200px;background:#ffffff;border-radius:6px; position:fixed;top:25%; left:50%; margin-left:-200px;overflow: hidden;} .prompt_box .prompt_title{height:40px;line-height:40px;padding-left:20px;border-bottom:2px solid #1a9ebf;background:#e6e6e6;position: relative;} .prompt_box .prompt_title h4{font-size:16px;color: #333333; margin-top:0;} .prompt_box .prompt_cancel{width:24px;height:24px;background: url("img/cancel.png") no-repeat;position: absolute;right:0;top:0;} .prompt_box .prompt_cont{position: relative;height:158px;} .prompt_box .prompt_cont .prompt_text{line-height:140px;padding-left:100px;} .prompt_box .prompt_cont .prompt_sure{position: absolute;right:20px;bottom:34px; width:50px;height: 26px;background:#1a9ebf;border-radius:5px;color:#ffffff; font-size: 14px;line-height:26px;text-align: center;} .hide{display:none;} .show{display:block;} </style> </head> <body> <input type="button" value="按钮" id="btn"> <div class="mask hide"> <div class="prompt_box"> <div class="prompt_title"> <h4>系统提示</h4> <span class="prompt_cancel"></span> </div> <div class="prompt_cont"> <p class="prompt_text">输入有误,请重新输入!</p> <span class="prompt_sure">确定</span> </div> </div> </div> <script> $(function () { (function () { //////////////////////////弹窗效果//////////////////////////////// $('#btn').click(function () { $('.prompt_text').text('输入有误,请重新输入!'); $('.mask').removeClass('hide'); }) $('.prompt_sure,.prompt_cancel').click(function () { $('.mask').addClass('hide'); }) })(); }); </script> </body> </html>
效果图显示:
jquery是一个简洁而快速的JavaScript库,它具有独特的链式语法和短小清晰的多功能接口、高效灵活的css选择器,并且可对CSS选择器进行扩展、拥有便捷的插件扩展机制和丰富的插件,是继Prototype之后又一个优秀的JavaScript代码库,能够用于简化事件处理、HTML文档遍历、Ajax交互和动画,以便快速开发网站。
感谢你能够认真阅读完这篇文章,希望小编分享的“jquery如何实现弹窗效果”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,更多相关知识等着你来学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。