当前位置:首页精品源码网站源码给B2自带的代码高亮增加一键复制功能
🎉 恭喜你发现了宝藏!

给B2自带的代码高亮增加一键复制功能

给B2自带的代码高亮增加一键复制功能

编辑b2/Assets/fontend/single.js,在最上方插入以下代码。

function copyToClipboard(content) {
if (window.clipboardData) {
window.clipboardData.setData('text', content);
} else {
(function (content) {
document.oncopy = function (e) {
e.clipboardData.setData('text', content);
e.preventDefault();
document.oncopy = null;
}
})(content);
document.execCommand('Copy');
}
}

 

编辑b2/Assets/fontend/single.js,搜索prettyPrint(),在下方插入以下代码。

 [...document.getElementsByTagName('pre')].forEach(item => {
item.style.position = "relative";

if (!item.querySelector('.sticky-button')) {
let copyButton = document.createElement("button")
copyButton.className = 'sticky-button'; // 使用 sticky-button 類別
copyButton.innerHTML = "一键复制";
copyButton.onclick = function () {
let copyData = item.lastChild.innerText;
navigator.clipboard.writeText(copyData).then(() => {
copyButton.innerHTML = "复制成功";
setTimeout(function () {
copyButton.innerHTML = "一键复制";
}, 1000);

});
}
// 將按鈕添加到 pre 內部,並且在 ol 上面
item.insertBefore(copyButton, item.firstChild);

}
});

 

CSS加入代码(限定最大高数、带滚动条、代码超出自动换行)

/*代码高亮美化开始*/
.entry-content pre:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 15px;
height: 15px;
border-radius: 50%;
background: #fc625d;
margin: 15px 25px;
}
.sticky-button {

position: -webkit-sticky;
position: sticky;
top: 0;
left:100%;
font-size:16px;
background: var(--b2color);
color: #fff;
border: none;
padding: 5px 10px;
border-radius: var(--b2radius);
cursor: pointer;
}
.entry-content pre {
position: relative;
border-radius: 6px;
padding-top: 50px;
box-shadow: 0px 8px 20px -10px #000;
}
.entry-content pre code, .content-show-roles pre code{
white-space: pre-wrap!important;
}
.entry-content pre {
min-height:100px;
max-height:300px;

overflow-y: auto; /* 当内容高度超出元素高度时显示滚动条 */
overflow-x: auto; /* 隐藏水平滚动条 */
}
.entry-content pre:before {
content: '';
position: absolute;
top: 0;
left: 25px;
width: 15px;
height: 15px;
border-radius: 50%;
margin: 15px 25px;
background: #fdbc40;
}
ol.linenums:after {
content: '';
position: absolute;
top: 0;
left: 50px;
width: 15px;
height: 15px;
border-radius: 50%;
margin: 15px 25px;
background: #35cd4b;
}
/*代码高亮美化结束*/
提示: 本站一律禁止以任何方式发布或转载任何违法的相关信息访客发现请向站长举报,会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。本网站的资源部分来源于网络,如有侵权烦请发送邮件至:522552094@qq.com

给TA打赏
共{{data.count}}人
人已打赏
精品源码网站源码

微信证件照小程序源码

2024-10-31 0:40:02

网站源码

H5聊天系统即时通讯 风车IM聊天APP、聊天、交友、客服、微信带安卓、苹果端APP即时通

2024-12-28 22:08:33

!
你也想出现在这里?立即 联系我们吧!
终生年SVIP赞助仅需188
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索
  • 5477 用户总数
  • 37042 文章总数
  • 154537536 浏览总数
  • 0 今日发布
  • 2704 稳定运行
立即加入

加入本站VIP,全站资源任意下载!