WordPress 网站添加弹窗广告【纯代码】
1、修改 JavaScript 代码:
var popup = document.getElementById('qgg_popup');
var popup_box = document.querySelector('.qgg_popup_box');
var popup_close = document.querySelector('.qgg_popup_close');
// 窗口加载时弹出
window.onload = function() {
popup.style.display = "block";
}
// 点击窗体其他位置时关闭
window.onclick = function(event) {
if (event.target == popup) {
popup.style.display = "none";
}
}
popup_box.onclick = function() {
popup.style.display = "none";
}
// 点击关闭按钮时关闭
popup_close.onclick = function() {
popup.style.display = "none";
}
使用 wordpress 建站的朋友将 JS 代码丢到主题的主 JS 文件中去即可。DUX 主题用户直接丢到主题 js 文件夹下的 main.js 文件中即可。其他程序建站的朋友可以放到自己相应的 JS 文件里。
2、修改 CSS 样式代码:
/* 弹窗广告css 2018-8-29 */
html, body{ margin:0; height:100%; }
#qgg_popup{
position: fixed;
top: 0; left: 0;
display: none;
width: 100%;
height: 100%;
margin: auto;
background: rgba(36, 36, 36, 0.8);
}
.qgg_popup_box {
z-index: 10;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
width: 280px;
height: 396px;
margin: auto;
text-align: center;
}
.qgg_popup_close{
position: relative;
width: 36px;
height: 36px;
background: #fff;
color: #999;
float: right;
font-size: 24px;
text-align: center;
border-radius: 50%;
line-height: 36px;
font-weight: bold;
}
.qgg_popup_close:hover,
.qgg_popup_close:focus {
color: red;
cursor: pointer;
}
.qgg_popup_img{
position:relative;
top: 36px;
left: 0px;
width:240px;
height:360px;
border-radius: 15px;
}
@media (max-width: 640px){
.qgg_popup_close{ display: none; }
}
使用 WordPress 搭建网站的朋友将代码丢到主题的 style.css 文件中即可。DUX 主题丢到 main.css 文件中即可。使用其他网站程序的添加到相应的 css 文件中。
3、修改 html 代码:
这段代码是前端显示的 HTML ,将其放到你想要其显示的页面中即可,比如首页文件 index.php 、文章文件 single.php 中即可。
<!-- 弹窗广告 -->
<div id="qgg_popup">
<div class="qgg_popup_box">
<span class="qgg_popup_close">×</span>
<img class="qgg_popup_img" src="./1.png">
</div>
</div>
注意,代码中“./1.png”这里需要修改成你自己的弹窗广告图片地址。这样就可以实现为网站添加弹窗广告的功能了,有网站需要弹窗功能的朋友可以自己试一下。可能这样小小的修改有时候就能为你网站赚钱增加一个新的渠道!
郑重声明:帖子标题写有 【亲测】即能正常运行,帖子标题有 【原版】字样即原始版本自带有加密文件版本
限于标题长度字数限制问题,部分资源未注明开源情况均为原版文件(原版文件未做解密处理,但不影响使用)爱集码不会自己加密代码文件,源码仅供研究学习之用,请勿用于商业运营,商业运营请支持作者,购买正版,谢谢
特别提醒:本站所有下载资源均不包含技术支持和安装服务! 如需技术支持联系客服有偿解决,终身会员视情况而定,一般小问题免费解决。
重要提示:本站对于 Safari浏览器兼容不好,如出现下载按钮消失请换360或者QQ等第三方浏览器访问或下载。
免责申明:本站仅提供学习的平台,所有资料均来自于网络,版权归原创者所有!本站不提供任何保证,并不承担任何法律责任,如果对您的版权或者利益造成损害,请提供相应的资质证明,我们将于3个工作日内予以删除。
资源猫 » WordPress 网站添加弹窗广告【纯代码】
资源猫 » WordPress 网站添加弹窗广告【纯代码】