-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
139 lines (123 loc) · 4.3 KB
/
index.html
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>WebFollow - 在线 RSS 阅读器</title>
<meta name="description" content="简单、高效、全平台、网页版RSS 阅读器">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="dc.title" content="WebFollow - 在线 RSS 阅读器<">
<meta name="dc.description" content="简单、高效、全平台、网页版RSS 阅读器">
<meta name="dc.source" content="https://www.webfollow.cc/">
<meta name="dc.language" content="zh_CN">
<meta name="robots" content="index, follow">
<meta name="google-adsense-account" content="ca-pub-1354874712972588">
<meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<meta name="bingbot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<meta property="og:url" content="https://www.webfollow.cc/">
<meta property="og:site_name" content="webfollow">
<meta property="og:locale" content="zh_CN">
<meta property="og:type" content="article">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@webfollow">
<meta name="twitter:creator" content="@webfollow">
<meta name="twitter:title" content="WebFollow - 在线 RSS 阅读器">
<meta name="twitter:description" content="简单、高效、全平台、网页版RSS 阅读器">
<meta name="twitter:image" content="">
<!-- 谷歌浏览器 -->
<meta name="theme-color" content="#fff">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="icon" type="image" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/favicon.ico" sizes="180x180">
<link rel="mask-icon" href="/favicon.ico">
<title>Webfollow</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js"></script>
<style>
@keyframes r {
0% {
transform: rotateX(0deg);
}
30% {
transform: rotateZ(0deg);
}
36% {
transform: rotateZ(180deg);
}
60% {
transform: rotateZ(360deg);
}
100% {
transform: rotateZ(360deg);
}
}
@keyframes r-text {
0% {
opacity: .1;
}
30% {
opacity: .5;
}
36% {
opacity: 1;
}
50% {
opacity: 1;
}
80% {
opacity: .5;
}
100% {
opacity: .1;
}
}
.loading-logo {
animation: r 2s infinite;
}
.loding-text {
animation: r-text 3s infinite;
}
</style>
<script>
function log(...args) {
console.log("%cWebFollow", "padding:3px 5px;border-radius:5px;background:#999;color:#fff;font-size:1em;", ...args)
}
function info(...args) {
console.log("%cWebFollow", "padding:3px 5px;border-radius:5px;background:#ff7a61;color:#fff;font-size:1em;", ...args)
}
function debug(...args) {
console.log("%cWebFollow", "padding:3px 5px;border-radius:5px;background:green;color:#fff;font-size:1em;", ...args)
}
function err(e, ...args) {
console.error("%cWebFollow", "padding:3px 5px;border-radius:5px;background:#ff7a61;color:#fff;font-size:1em;", ...args, e)
}
function setTitle(total) {
if (total) {
document.title = `(${total})WebFollow - 在线 RSS 阅读器`
} else {
document.title = `WebFollow - 在线 RSS 阅读器`
}
}
if (!window.location.host.includes("local")) {
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?392ac0df04b6b46eb9cc5a38c42b8004";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
}
</script>
</head>
<body>
<div id="app"></div>
<div id="loading" style="text-align: center; margin-top: 36vh;">
<img class="loading-logo" style="width: 5rem;" src="/logo.svg" alt="">
<p class="loding-text">加载中....</p>
</div>
<script>
window.addEventListener('load', () => document.getElementById('loading').style.display = 'none');
</script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>