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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>AtomGit_开放原子开源基金会代码托管平台-AtomGit</title>
<meta
name="description"
content="AtomGit 是开放原子开源基金会旗下的具有自主核心技术的开源代码托管平台,为开源软件、开源硬件、开源芯片等各类开源项目提供基于 Git 协议的源码托管服务,推动创新资源共建共享。"
/>
<meta name="keywords" content="开源项目源代码托管,开源软件项目,开源硬件项目,开源芯片项目,AtomGit,Git" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<style>
:root {
/* 云效组件主题 */
--color-brand1-10: #000f33 !important;
--color-brand1-9: #001e66 !important;
--color-brand1-8: #002c99 !important;
--color-brand1-7: #0034b3 !important;
--color-brand1-6: #215ae5 !important;
--color-brand1-5: #4077ff !important;
--color-brand1-4: #69f !important;
--color-brand1-3: #bfd4ff !important;
--color-brand1-2: #d9e5ff !important;
--color-brand1-1: #f0f6ff !important;
--form-element-medium-corner: 6px !important;
/* 网站本身主题 */
--atom-color: #345de2;
--atom-color-1: #292929;
--atom-color-active: #06c270;
--atom-bg-normal: #f7f7f7;
--atom-radius-normal: 6px;
--atom-border-color-normal: #e8e8e8;
/* scrollbar-gutter: stable; */
}
.icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
</style>
<link
rel="stylesheet"
href="https://atomgit-opensource.oss-cn-beijing.aliyuncs.com/public/yunxiao-fe/teamix-ui/1.5.3/style/style/yunxiao-v5.min.css"
/>
<script src="https://openatom.cn/trivial-services/stats/index/entry?id=1&auto=no"></script>
<script>
window.addEventListener('orientationchange', setRem);
window.addEventListener('resize', setRem);
setRem();
function setRem() {
const html = document.querySelector('html');
const { width } = html.getBoundingClientRect();
if (width > 750) {
html.style.fontSize = '16px';
} else {
html.style.fontSize = `${(width * 20) / 375}px`;
}
}
/* 解决ios点击input框放大 */
window.addEventListener('load', () => {
//当一个手指放在屏幕上时,会触发touchstart事件。如果另一个手指又放在了屏幕上,则会先触发gesturestart事件,随后触发基于该手指的touchstart事件。
document.addEventListener('gesturestart', function (e) {
e.preventDefault();
});
//在单个元素上单击两次 --- dblclick
document.addEventListener('dblclick', function (e) {
e.preventDefault();
});
//一个手指放在屏幕上时,会触发touchstart事件
document.addEventListener('touchstart', function (event) {
if (event.touches.length > 1) {
event.preventDefault();
}
});
//如果一个或两个手指在屏幕上滑动,将会触发gesturechange事件
//但只要有一个手指移开,则会触发gestureend事件,紧接着又会触发toucheend事件。
var lastTouchEnd = 0;
document.addEventListener(
'touchend',
function (event) {
var now = new Date().getTime();
if (now - lastTouchEnd <= 300) {
event.preventDefault();
}
lastTouchEnd = now;
},
false,
);
});
</script>
<link rel="icon" href="/favicon.ico"><script defer src="/js-csdn/index.1ede9b.js"></script><link href="/css-csdn/index.1ede9b.css" rel="stylesheet"></head>
<body>
<script
src="https://atomgit-opensource.oss-cn-beijing.aliyuncs.com/code/lib/1.0.0/yunxiao-libs.min.js"
nonce=""
></script>
<div id="ice-container"></div>
<script src="https://atomgit-opensource.oss-cn-beijing.aliyuncs.com/public/yunxiao-fe/teamix-ui/1.5.3/dist/dist/teamix-ui.min.js"></script>
<script src="https://file.atomgit.com/uploads/assets/iconfont.js?v=2024-11-12"></script>
</body>
</html>
|