-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
158 lines (140 loc) · 4.93 KB
/
index.html
File metadata and controls
158 lines (140 loc) · 4.93 KB
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>IFeed - 在线 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="IFeed - 在线 RSS 阅读器<">
<meta name="dc.description" content="简单、高效、全平台、网页版RSS 阅读器">
<meta name="dc.source" content="https://ifeed.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://ifeed.cc/">
<meta property="og:site_name" content="IFeed">
<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="@ifeed">
<meta name="twitter:creator" content="@ifeed">
<meta name="twitter:title" content="IFeed - 在线 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>ifeed</title>
<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;
}
.bg-gradient {
background: linear-gradient(to bottom right, rgba(var(--v-theme-primary), .1), rgb(var(--v-theme-background)) 50%);
}
</style>
<script>
function log(...args) {
console.log("%cifeed", "padding:3px 5px;border-radius:5px;background:#999;color:#fff;font-size:1em;", ...args)
}
function info(...args) {
console.log("%cifeed", "padding:3px 5px;border-radius:5px;background:#ff7a61;color:#fff;font-size:1em;", ...args)
}
function debug(...args) {
console.log("%cifeed", "padding:3px 5px;border-radius:5px;background:green;color:#fff;font-size:1em;", ...args)
}
function err(e, ...args) {
console.error("%cifeed", "padding:3px 5px;border-radius:5px;background:#ff7a61;color:#fff;font-size:1em;", ...args, e)
}
// let clear
function setTitle(total) {
if (total) {
ifeedApp.tip('已同步' + total + '条')
} else {
ifeedApp.tip('')
}
}
const ifeedApp = {};
// 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>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-E4PSK55B0V"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-E4PSK55B0V');
</script>
<script async src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js"></script>
<!-- 引入 Readability.js -->
<script src="https://unpkg.com/@mozilla/readability@0.4.4/Readability.js"></script>
<!-- responsivevoice -->
<script src="https://code.responsivevoice.org/responsivevoice.js"></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>