我们平时访问网站、博客时经常会打开网页后看到弹出一个图片广告。如果作为普通访客可能会略有抵触,但是作为站长,我们却十分需要这样的广告来为网站赚钱贴补一下服务器维护费用。说实话我是挺喜欢这个功能的,但是一直未找到合适的代码,然后今天就自己写了,分享给大家。
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样式代码:
- 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代码:
- <!-- 弹窗广告 -->
- <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>
这段代码是前端显示的 HTML ,将其放到你想要其显示的页面中即可,比如首页文件 index.php 、文章文件single.php 中即可。
温馨提示:本文最后更新于2019年3月25日,已超过 2 年没有更新,如果文章内容或图片资源失效,请留言反馈,模板下载吧会及时处理,谢谢!