前端使用bootstrap和jquery制作弹窗

导读:本篇文章讲解 前端使用bootstrap和jquery制作弹窗,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

效果如下:
在这里插入图片描述
代码如下:

<!doctype html>
<html>
<head>
	<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
	<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
	<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</head>

<body>
<div class="alert alert-success" id="success-alert">
   <button type="button" class="close" data-dismiss="alert">x</button>
   <strong>成功! </strong> 我的第一个提示弹框.
</div>

<div Style="height:100px">
	<p Style="padding-top:50px">使用bootstrap和jQuery制作弹窗</p>
</div>

<div class="product-options">
	<button id="myWish" class="btn btn-success">点我弹出弹框 </button>
</div>
</body>

<script>
   $(document).ready(function() {
   //没点击的时候隐藏弹框
   $("#success-alert").hide();
   //点击的时候弹出弹框2秒
   $("#myWish").click(function showAlert() {
      $("#success-alert").fadeTo(2000, 500).slideUp(500, function() {
		$("#success-alert").slideUp(500);
    });
  });
});
</script>
</html>

参考:
Bootstrap Alert Auto Close

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/80284.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!