去博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的 代码片
.
// An highlighted block
var spaceTextIcon = 20;
var fontSize = 35;
function strWidth(str) {
if (str.length == 0) return 0;
//We need to calculate how long our string will be in pixels
var strWidths = {
" ": 9,
"!": 10,
'"': 15,
"#": 17,
$: 17,
"%": 27,
"&": 22,
"'": 8,
"(": 10,
")": 10,
"*": 12,
"+": 18,
",": 9,
"-": 10,
".": 9,
"/": 9,
"0": 17,
"1": 17,
"2": 17,
"3": 17,
"4": 17,
"5": 17,
"6": 17,
"7": 17,
"8": 17,
"9": 17,
":": 10,
";": 10,
"<": 18,
"=": 18,
">": 18,
"?": 19,
"@": 30,
A: 22,
B: 22,
C: 22,
D: 22,
E: 21,
F: 19,
G: 24,
H: 22,
I: 9,
J: 17,
K: 22,
L: 19,
M: 25,
N: 22,
O: 24,
P: 21,
Q: 24,
R: 22,
S: 21,
T: 19,
U: 22,
V: 21,
W: 29,
X: 21,
Y: 21,
Z: 19,
"[": 10,
"]": 10,
"^": 18,
_: 17,
"`": 10,
a: 17,
b: 19,
c: 17,
d: 19,
e: 17,
f: 10,
g: 19,
h: 19,
i: 9,
j: 9,
k: 17,
l: 9,
m: 27,
n: 19,
o: 19,
p: 19,
q: 19,
r: 12,
s: 17,
t: 10,
u: 19,
v: 17,
w: 24,
x: 17,
y: 17,
z: 15,
"{": 12,
"|": 9,
"}": 12,
"~": 18
};
var w = 0;
for (var i = 0; i < str.length; i++) {
//If we dont know how wide the char is, set it to 28.5 that is the width of W and no char is wider than that.
w += (fontSize / 30) * (strWidths[str[i]] ? strWidths[str[i]] : 28.5);
}
//This is for the space between the text and the symbol.
w += spaceTextIcon;
return w;
}