`) $('body').append($newdiv); var num = 1; $("#wztkj_liuyankuang_title").click(function() { console.log("点击了图片X"); num++; if (num % 2 == 0) { $(".wztkj_liuyankuang_content").css({ display: "none", }); $(".wztkj_liuyankuang_footer").css({ display: "none", }); $(".wztkj_liuyan_close").remove(); $("#wztkj_liuyankuang_title").removeClass('wztkj_liuyankuang_title') $("#wztkj_liuyankuang_title").addClass('wztkj_liuyankuang_two') } else { $(".wztkj_liuyankuang_content").css({ display: "block", }); $(".wztkj_liuyankuang_footer").css({ display: "flex", }); $('#wztkj_liuyankuang_title').append(' '); $("#wztkj_liuyankuang_title").removeClass('wztkj_liuyankuang_two') $("#wztkj_liuyankuang_title").addClass('wztkj_liuyankuang_title') } // 切换图片 }); $('.wztkj_liuyankuang_f_off').click(function() { console.log('点击了取消'); $('.wztkj_liuyankuang_content').css({ 'display': 'none', }) $('.wztkj_liuyankuang_footer').css({ 'display': 'none', }) // 切换图片 $(".wztkj_liuyan_close").remove(); $("#wztkj_liuyankuang_title").removeClass('wztkj_liuyankuang_title') $("#wztkj_liuyankuang_title").addClass('wztkj_liuyankuang_two') }) $('.wztkj_liuyankuang_f_confirm').click(function() { if ($('.wztkj_liuyankuang_content >textarea').val() != '' && $('.wztkj_liuyankuang_content >textarea').val().trim() != '') { $.ajax({ url: url, // API 地址 type: 'POST', // 请求类型 data: { nonce: nonce, action: 'websitebox_insert_liuyan', content: $('.wztkj_liuyankuang_content textarea').val(), }, success: function(data, textStatus, jqXHR) { console.log('请求成功:', data); alert('发送成功') $('.wztkj_liuyankuang_content >textarea').val(" ") }, error: function(jqXHR, textStatus, errorThrown) { console.error('请求失败:', textStatus, errorThrown); alert('请求失败') } }); } else { alert("输入不能为空"); } }) } // 广告 √ function vdvertise(ad) { ad = JSON.parse(ad); console.log('广告内容--->', ad); //左侧广告(PC显示) if (ad.left == 1 && ad.leftad && ad.leftad.length > 0 && wztkj_ScreenWidth > 750) { $("body").append(`
`) var adstr = '' ad.leftad.filter((item) => { if (item.pic != '') { adstr += ` ` } }) $(".wztkj_guanggao_left-side").append(adstr) } //右侧广告(PC显示) if (ad.right == 1 && ad.rightad && ad.rightad.length > 0 && wztkj_ScreenWidth > 750) { let adstr = '' $("body").append(`
`); ad.rightad.filter(item => { adstr += ` ` }) $(".wztkj_guanggao_right-side").append(adstr) } //关闭广告(左右两侧的关闭icon和a标签是同级,不存在冒泡和默认事件) $(".wztkj_posi_Closeicon").click(function() { event.stopPropagation(); //??????? $(this).parent().hide(); }); //????????? $('.wztkj_posi_img').click(function() { event.stopPropagation(); }); // 底部广告,手机端独有(底部广告应该加上开屏广告展示的时间) if(ad.bottom == 1 && ad.bottad.pic !== "" && wztkj_ScreenWidth <= 750){ $("body").append(` `) footerAdvertisingFun = ()=>{ const footerAdElement = $('#wztkj_close_title'); //这里调整底部广告的时间 let footerAdElementTime = ad.bottad.time const footerAdElementTimer = setInterval(() => { footerAdElementTime--; footerAdElement.text(footerAdElementTime); if (footerAdElementTime == 0) { $('.wztkj_guanggao_footer_box').hide() clearInterval(footerAdElementTimer); } }, 1000); $('.f_b_i_close_img').click(function(event) { event.preventDefault() $('.wztkj_guanggao_footer_box').hide() clearInterval(footerAdElementTimer); }) } //底部广告在用户开启了开屏广告时,会在开屏广告结束时调用,如果用户没有开启开屏广告,则初次调用 if(ad.mobile !== 1){ $(".f_b_imgBack").on("load",function(){ footerAdvertisingFun() }) } } // 手机版弹窗广告(开屏广告) //为什么需要这个遮罩呢?
if(ad.mobile == 1 && ad.mobtad.pic !== "" && wztkj_ScreenWidth <= 750){ $("body").append(` `) $(".w_g_m_back").on("load",function(){ stopRoll() //显示开屏广告的同时禁用滚动条 $(".w_g_m_top").css("display","flex") // 显示时间 let mobileAdElementTime = ad.mobtad.time; const mobileAdElement = $('#wztkj_guanggao_mobile_time'); let mobileAdElementTimer = setInterval(() => { mobileAdElementTime--; mobileAdElement.text(mobileAdElementTime); if (mobileAdElementTime == 0) { $('.wztkj_guanggao_mobile_box').hide(); clearInterval(mobileAdElementTimer); openRoll() //恢复滚动 if(ad.bottom == 1){ footerAdvertisingFun() //结束后调用底部广告 } } }, 1000); $('.wztkj_guanggao_mobile_box .w_g_close').click(function(event) { event.preventDefault(); $('.wztkj_guanggao_mobile_box').hide() clearInterval(mobileAdElementTimer); openRoll() //恢复滚动 if(ad.bottom == 1){ footerAdvertisingFun() //结束后调用底部广告 } }) }) } } // 侧边客服 √ function websitebox_broadSide(kefu) { kefu = JSON.parse(kefu); console.log(kefu); // 控制样式 let asidebottom = kefu.bottom?`--bbx-side_bottom:${kefu.bottom};`:''; let asideright = kefu.right?`--bbx-side_right:${kefu.right};`:''; let asideBg = kefu.bg?`--bbx-side_bg:${kefu.bg};`:''; let asideColor = kefu.icon?`--bbx-side_color:${kefu.icon};`:''; let asideStyle = `style="${asidebottom + asideright + asideBg + asideColor}"`; // 控制显示 let telClass = kefu.phone?'':'wztkj-bbxf-aside_hidden'; let qqClass = kefu.qq?'':'wztkj-bbxf-aside_hidden'; let qrcodeClass = kefu.qrcode?'':'wztkj-bbxf-aside_hidden'; let mailClass = kefu.mail?'':'wztkj-bbxf-aside_hidden'; let linkClass = kefu.wb?'':'wztkj-bbxf-aside_hidden'; let qqgroupClass = kefu.qqqun?'':'wztkj-bbxf-aside_hidden'; let topClass = ''; // 回到顶部是固定显示 $("body").append(`${kefu.phone}
${kefu.qq}
${''}
${kefu.mail}
${kefu.wb}
${kefu.qqqun}
`); // 回到顶部 $(".wztkj-bbxf-aside .wztkj-bbxf-item_top").click(function() { console.log('item_top') window.scrollTo(0, 0); }); // 链接 $(".wztkj-bbxf-aside .wztkj-bbxf-item_link").click(function() { console.log('item_link') window.open(kefu.wb) }); } // 三合一 function websitebox_threeAndOne(wx, zfb,share,open) { // 1. 打赏 let is_wx = 0; if (wx) { is_wx = 1 } let is_zfb = 0; if (zfb) { is_zfb = 1 } // 2. 分享 // 3. 海报 $("body") .append(` 请选择打赏方式
`) // 打赏 --微信 $("#wztkj_wx").click(function() { console.log($('.modal_footer').children().length); if ($('.modal_footer').children().length > 1) { $(".modal_content").html( ` ` ); $("#wztkj_wx").addClass("wztkj_zfb"); $("#wztkj_zfb").removeClass("wztkj_zfb"); } }); // 打赏 --支付宝 $("#wztkj_zfb").click(function() { if ($('.modal_footer').children().length > 1) { $(".modal_content").html( ` ` ); $("#wztkj_wx").removeClass("wztkj_zfb"); $("#wztkj_zfb").addClass("wztkj_zfb"); } }); if(share){ $("body") .append(` 分享到.....
`); } const now_time = new Date(); const year = now_time.getFullYear(); const month = ('0' + (now_time.getMonth() + 1)).slice(-2); const day = ('0' + now_time.getDate()).slice(-2); const hours = ('0' + now_time.getHours()).slice(-2); const minutes = ('0' + now_time.getMinutes()).slice(-2); const seconds = ('0' + now_time.getSeconds()).slice(-2); const post_time = `${year}/${month}/${day} ${hours}:${minutes}`; // ${window.location.href}
if(open){ var website_title = ''; var website_desc =`` var website_pic =`https://www.fazhiyi.com/wp-content/plugins/wzbaibaoxiang/img/haibao.jpg` $("body") .append(` `) } // link 当前链接地址 var link = window.location.href; if(share){ // 创建二维码 var wztkj_qrcode = new QRCode(document.getElementById("wztkj_qrcode"), { text: link, width: 80, height: 80, colorDark: "#000000", colorLight: "#ffffff", correctLevel: QRCode.CorrectLevel.H, }); } // 点击事件 // 打赏 $("#wztkj_f_s_c_ds").click(function() { $("#wztkj_modal_overlay_ds").show(); }); // 分享 $("#wztkj_f_s_c_fx").click(function() { $("#modal_overlay_fx").show(); }); let jiping = ""; const screenWidth = window.innerWidth; const screenHeight = window.innerHeight; // 截屏 -- 海报 $("#wztkj_f_s_c_hb").click(function() { // 2025.1.22 这里将main改成了body,原因在于有些网站可能没有main标签,会报错。 // html2canvas(document.querySelector("body"), { // useCORS: true, // logging: false, // width: screenWidth, // height: screenHeight, // }).then((canvas) => { // // 将Canvas转换为图片 // jiping = canvas.toDataURL("image/png"); // // 显示图片 // $(".modal_ti_img").html(` `); // }); $("#modal_overlay_hb").show(); }); // 点击遮罩 $(".wztkj_modal_overlay_ds").click(function() { $(".wztkj_modal_overlay_ds").hide(); }); // x icon 关闭 $(".wztkj_close_ds").click(function() { $(".wztkj_modal_overlay_ds").hide(); }); // 弹出层不会 $(".wztkj_d_modal").click(function() { event.stopPropagation(); }); let wztkj_i = 0; // 海报点击下载 $(".modal_ti_c_r_b_one").click(function() { wztkj_i++; html2canvas(document.getElementById("wztkj_d_mod_one")).then((canvas) => { var link = document.createElement("a"); link.href = canvas .toDataURL("image/png") .replace("image/png", "image/octet-stream"); link.download = `分享${wztkj_i}.png`; document.body.appendChild(link); link.click(); document.body.removeChild(link); }); }); // 分享设置的软件 socialShare(".social-share", { sites: ["qzone", "qq", "weibo", "wechat"], }); } $(document).ready(function() { // 留言板 websitebox_lvyan_new('{"auto":1,"color":"#CD1A1A","title":"\u5efa\u8bae\u610f\u89c1","mobile_auto":0}', '39bb33669e', 'https://www.fazhiyi.com/wp-admin/admin-ajax.php') }) // }) }) 没有内容