子比主题-美化独立下载页面

修改了下载页面,添加手机自适应,如果更新主题时下载页面

/wp-content/themes/zibll/pages/download.php没改动代码的话,更新主题后【复制粘贴代码】进去就能用!(更新前记得备份!记得备份!记得备份!不然就被刷新代码了)

分享两种下载页样式,自行选择

样式一(本站效果)

图片[1]-子比主题-美化独立下载页面

样式二

图片[2]-子比主题-美化独立下载页面

下载页添加复制密码

后台自定义JavaScript

<!--下载页面密码复制-->
if(document.querySelectorAll(".but-download .badg")!=undefined){
    const reg = /[a-zA-z0-9]/ig;
    const copy = document.querySelectorAll(".but-download .badg");
    for (let i = 0; i < copy.length; i++) {
      copy[i].index = i;
      copy[i].setAttribute("data-toggle", "tooltip");
      copy[i].setAttribute("data-original-title", "点击复制");
      copy[i].addEventListener("click", copyOperation);
    };
    function copyOperation() {
      var oInput = document.createElement("input");
      let text = this.innerText;
      text = text.match(reg).join("");
      oInput.value = text;
      document.body.appendChild(oInput);
      oInput.select();
      document.execCommand("Copy");
      oInput.className = "oInput";
      oInput.style.display = "none";
      this.setAttribute("data-original-title", "已复制");
    };
};
- - - - - 本页内容已结束,喜欢请分享 - - - - -

感谢您的来访,获取更多精彩文章请收藏本站。

子比主题-美化独立下载页面-满心博客
子比主题-美化独立下载页面
此内容为付费资源,请付费后查看
100积分
付费资源
已售 67
© 版权声明
THE END
喜欢就支持一下吧
点赞558 分享
评论 抢沙发
头像
你这么聪明,说什么都对!
提交
头像

昵称

夸夸
夸夸
还有吗!没看够!
取消
昵称表情代码图片

    暂无评论内容