近期正在鼓捣集体网站,想实现进入网站自动弹出二维码的成果,相似上面这样:
两头磨磨唧唧从原生 JS 找到 JS 插件,节约了不少精力和工夫,然而也磕磕碰碰学到了些常识,倡议读者:想学一下弹窗的 JS 实现代码的能够看看前两大节,只想实现成果的,间接复制源码就行!
一 点击鼠标实现弹出 / 暗藏图片
实现原理:一个 div 做容器,外面蕴含了二维码图片,把题目(鼠标点击的指标)做一个 onclick 监听,用 div 的 display 属性管制图片的显示和暗藏。
源码:
<script type="text/javascript">
function showdiv(){if(document.getElementById("img_div").style.display=="block"){document.getElementById("img_div").style.display="none";
}
else{document.getElementById("img_div").style.display="block";
}
}
</script>
<div class="resume_msg baseBorder resume_notice resume_lang_name" notice-key="msg" for-key="name" for-value="html" contenteditable="true" onclick="showdiv()"> 微信公众号:浩 Coding</div>
<div id="img_div" style="display:none;"><img src="images/qrcode_258.jpg" width="258" height="258"/></div>
二 进入网页主动图片弹窗 / 可敞开弹窗
实现原理:当点击题目链接 onclick 监听 或者刷新网页时候,获取暗藏的二维码图片对象并弹出,点击敞开或者二维码图片外的区域则 暗藏二维码图片 display = “none”。相似下面例子原理。
源码(就几行 JS 是外围代码,少数是 CSS 款式):
<style>
小提议:每次刷新页面都会弹出图片,不免引起客户恶感,能够 ** 在页面存入 ****Session**** 用来判断是否第一次加载页 ** 面,设置只有第一次加载页面才会弹窗。源码:
<style>
/* 触发弹窗图片的款式 */
#myImg {
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}
#myImg:hover {opacity: 0.7;}
/* 弹窗背景 */
.modal {
display: none;
/* Hidden by default */
position: fixed;
/* 设置显示的优先层级级别 */
z-index: 1234;
/* Sit on top */
padding-top: 100px;
/* Location of the box */
left: 0;
top: 0;
width: 100%;
/* Full width */
height: 100%;
/* Full height */
overflow: auto;
/* Enable scroll if needed */
background-color: rgb(0, 0, 0);
/* Fallback color */
background-color: rgba(0, 0, 0, 0.9);
/* Black w/ opacity */
}
/* 设置弹出图片的款式 */
.modal-content {
margin: auto;
display: block;
width: 40%;
max-width: 430px;
}
/* 设置文本内容的款式 */
#caption {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
text-align: center;
color: #ccc;
padding: 10px 0;
height: 150px;
}
/* 设置弹出图片的动画,增加动画 */
.modal-content,
#caption {
-webkit-animation-name: zoom;
-webkit-animation-duration: 0.6s;
animation-name: zoom;
animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
from {-webkit-transform: scale(0)
}
to {-webkit-transform: scale(1)
}
}
@keyframes zoom {
from {transform: scale(0)
}
to {transform: scale(1)
}
}
/* 设置 span 标签的敞开按钮款式 */
.close {
position: absolute;
top: 55px;
right: 415px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}
/* 小屏幕中图片宽度为 100% */
@media only screen and (max-width: 700px) {
.modal-content {width: 100%;}
}
</style>
<!-- 图片缩略图,点击图片触发点击事件,以触发弹窗 -->
<img id="myImg" src="images/qrcode_258.jpg" alt="微信扫码关注公众号:浩 Coding" width="300" height="200"
style="display:none;">
<!-- 弹窗 -->
<div id="myModal" class="modal">
<!-- 敞开按钮 -->
<span class="close" onclick="document.getElementById('myModal').style.display='none'">×</span>
<!-- 弹窗内容 -->
<!-- 属性设置为模态框 -->
<img class="modal-content" id="img01">
<!-- 文本形容 -->
<div id="caption"> 微信公众号二维码 </div>
</div>
<a href=""onclick="document.getElementById('myImg').onclick();"> 点击查看微信公众号二维码 </a>
$(function () { // 页面加载完实现后,主动触发点击事件发明弹窗
SetImage();
document.getElementById("myImg").onclick(); // 触发一次点击事件});
<script type="text/javascript">
function SetImage() {
// 获取 DIV 弹窗
var modal = document.getElementById('myModal');
// 获取图片插入到弹窗 - 应用 "alt" 属性作为文本局部的内容
var img = document.getElementById('myImg');
var modalImg = document.getElementById("img01"); // 获取弹出图片元素
var captionText = document.getElementById("caption"); // 取得文本形容
img.onclick = function openImage() { // 注册原图片点击事件
modal.style.display = "block"; // 此元素将显示为块级元素,此元素前后会带有换行符。modalImg.src = this.src; // 将原图片 URL 赋给弹出图片元素
captionText.innerHTML = this.alt; // 赋值文本内容给弹出框文本
}
// 获取 <span> 元素,款式设置为敞开按钮
var span = document.getElementsByClassName("close")[0];
// 当点击 (x), 敞开弹窗
span.onclick = function () {modal.style.display = "none"; // 将模态框属性设置为不可见}
// 当点击 图片, 敞开弹窗,实现点击空白处敞开图片
modal.onclick = function () {modal.style.display = "none"; // 将模态框属性设置为不可见}
}
function openImage(){document.getElementById('myImg').onclick();}
</script>
小提议:每次刷新页面都会弹出图片,不免引起客户恶感,能够 在页面存入 Session 用来判断是否第一次加载页 面,设置只有第一次加载页面才会弹窗。
源码:
$(function () { // 页面加载完实现后,主动触发点击事件发明弹窗
// 必须先新建弹窗对象,不然无奈实现点击链接触发弹窗事件
SetImage();
// 获取弹窗 session,决定是否弹窗
var data = sessionStorage.getItem('imgSession');
if(data == null){document.getElementById("myImg").onclick(); // 触发一次点击事件}
// 存 session,避免一个页面反复弹窗
sessionStorage.setItem('imgSession', '2333333');
});
三 弹出层插件 jquery.popup.js
利用 jquery.popup.js 能够实现图中炫酷的动画成果, 反对 animate.css。
源码:
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> 反对 animate.css 动画的 jquery 弹出层插件 </title>
<link rel="stylesheet" type="text/css" href="css/normalize.css" /><!--CSS RESET-->
<link href="css/animate.css" rel="stylesheet"/>
<style>
.htmleaf-content{
width: 300px;
margin: 20px auto;
}
.item {
max-width: 65%;
padding: 1em;
background: #eee;
display: none;
position: relative;
-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
border-radius: 3px;
color: #000;
}
.item-close {
cursor: pointer;
right: 5px;
top: 5px;
position: absolute;
background: #222;
color: #fff;
border-radius: 100%;
font-size: 14px;
height: 24px;
line-height: 22px;
text-align: center;
width: 24px;
}
</style>
</head>
<body>
<div class="htmleaf-content htmleaf-demo">
<a href="#" class="btn1"> 微信扫码关注公众号:浩 Coding</a>
</div>
<div id="item" class="item">
<h3> 浩 Coding</h3>
<p> 反对 animate.css 动画的 jquery 弹出层插件 </p>
<img src="img/qrcode_430.jpg">
<b class="item-close js-popup-close">x</b>
</div>
<script src="js/jquery-1.11.0.min.js" type="text/javascript"></script>
<script src="js/jquery.popup.js"></script>
<script>
$(function () {$('.btn1').on('click', function () {$('#item').popup({
time: 1000,
classAnimateShow: 'flipInX',
classAnimateHide: 'hinge',
onPopupClose: function e() {// console.log('0')
},
onPopupInit: function e() {// console.log('1')
}
});
});
});
</script>
</body>
</html>
本大节源码下载地址:
https://gitee.com/jahero/tool…