testmacpanel
2019-10-08 15:58:17 Author: www.safeinfo.me(查看原文) 阅读量:403 收藏

发表于 |

字数统计: 345 | 阅读时长 ≈ 2

测试 Mac Panel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
1
var attributes = [
'autocomplete="true"',
'autocorrect="true"',
'autocapitalize="off"',
'spellcheck="false"',
'contenteditable="true"'
]
var attributesStr = attributes.join(' ')

hexo.extend.filter.register('after_post_render', function (data) {
while (/<figure class="highlight ([a-zA-Z]+)">.*?<\/figure>/.test(data.content)) {
data.content = data.content.replace(/<figure class="highlight ([a-zA-Z]+)">.*?<\/figure>/, function () {
var language = RegExp.$1 || 'plain'
var lastMatch = RegExp.lastMatch
lastMatch = lastMatch.replace(/<figure class="highlight /, '<figure class="iseeu highlight /')
return '<div class="highlight-wrap"' + attributesStr + 'data-rel="' + language.toUpperCase() + '">' + lastMatch + '</div>'
})
}
return data
})

测试 css 代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
.highlight-wrap[data-rel] {
position: relative;
overflow: hidden;
border-radius: 5px;
box-shadow: 0 10px 30px 0px rgba(0,0,0,0.4);
margin: 35px 0;
outline: none;
}
.highlight-wrap[data-rel] ::-webkit-scrollbar {
height: 10px;
}
.highlight-wrap[data-rel] ::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
}
.highlight-wrap[data-rel] ::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
.highlight-wrap[data-rel] * {
position: static;
}
.highlight-wrap[data-rel]::before {
content: attr(data-rel);
height: 38px;
line-height: 38px;
background: #21252b;
color: #fff;
font-size: 16px;
position: absolute;
top: 0;
left: 0;
width: 100%;
font-family: 'Source Sans Pro', sans-serif;
font-weight: bold;
padding: 0px 80px;
text-indent: 15px;
float: left;
}
.highlight-wrap[data-rel]::after {
content: " ";
position: absolute;
-webkit-border-radius: 50%;
border-radius: 50%;
background: #fc625d;
width: 12px;
height: 12px;
top: 0;
left: 20px;
margin-top: 13px;
-webkit-box-shadow: 20px 0px #fdbc40, 40px 0px #35cd4b;
box-shadow: 20px 0px #fdbc40, 40px 0px #35cd4b;
z-index: 3;
}
.highlight-wrap[data-rel] .code {
width: 100%;
}
.highlight-wrap[data-rel] .highlight.iseeu pre {
padding-top: 40px;
background-color: #2d2d2d;
}
.highlight-wrap[data-rel] .highlight,
.highlight-wrap[data-rel] pre {
margin: 0;
}

Fi9Coder wechat

扫一扫,加入信安圈。


文章来源: https://www.safeinfo.me/2019/08/22/testmacpanel.html
如有侵权请联系:admin#unsafe.sh