first commit

This commit is contained in:
编码猿
2024-09-27 01:15:47 +08:00
commit 8be1fcce6b
155 changed files with 9435 additions and 0 deletions

View File

@@ -0,0 +1 @@
217a9024-c835-4293-9269-e7be2a8dd55f

View File

@@ -0,0 +1 @@
9b4a28d6-e012-4f66-bc67-f102e825d19a

View File

@@ -0,0 +1,91 @@
@font-face {
font-family: "iconfont"; /* Project id 4318577 */
src: url('./iconfont.woff2?t=1700074221843') format('woff2'),
url('./iconfont.woff?t=1700074221843') format('woff'),
url('./iconfont.ttf?t=1700074221843') format('truetype');
}
.iconfont {
font-family: "iconfont", serif !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.json-guanyu:before {
content: "\e60b";
}
.json-cuowutishi-copy:before {
content: "\e7a2";
}
.json-wenjianjia:before {
content: "\e67c";
}
.json-sucai:before {
content: "\e603";
}
.json-open-folder:before {
content: "\e677";
}
.json-json:before {
content: "\e7bd";
}
.json-cunchuqia:before {
content: "\e638";
}
.json-cunchu:before {
content: "\e602";
}
.json-gengduo:before {
content: "\ec1c";
}
.json-shezhi:before {
content: "\e628";
}
.json-gengduo1:before {
content: "\e63f";
}
.json-shezhi2:before {
content: "\e6a9";
}
.json-shezhi-xitongshezhi:before {
content: "\e600";
}
.json-moon:before {
content: "\e6c2";
}
.json-wo:before {
content: "\e60f";
}
.json-wodewo:before {
content: "\e6df";
}
.json-31shezhi:before {
content: "\e601";
}
.json-shezhi1:before {
content: "\e8b7";
}
.json-taiyang:before {
content: "\e709";
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
7809e461-c368-4067-ae5e-0f0fdcd86be9

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@@ -0,0 +1,159 @@
<!--
~ Copyright (c) 2023.
~
~ 作者bmy
~ 邮箱2271608011@qq.com
~ giteehttps://gitee.com/bmycode
~ githubhttps://github.com/helpcode
~
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
body,ul,li,p,a{
font-family: "Al Bayan", serif;
list-style: none;
margin: 0;
padding: 0;
text-decoration: none;
}
.main {
width: 100%;
height: 100vh;
display: flex;
align-items: center;
flex-direction: column;
padding-top: 60px;
box-sizing: border-box;
}
.main img {
width: 150px;
height: 150px;
}
.main .name {
font-size: 18px;
letter-spacing: 1px;
}
.main .desc {
font-size: 13px;
color: #bdbdbd;
}
.loading,
.loading > div {
position: relative;
box-sizing: border-box;
}
.loading {
display: block;
font-size: 0;
color: #bdbdbd;
margin-top: 20px;
}
.loading.la-dark {
color: #333;
}
.loading > div {
display: inline-block;
float: none;
background-color: currentColor;
border: 0 solid currentColor;
}
.loading > div {
width: 10px;
height: 10px;
border-radius: 100%;
}
.loading > div:first-child {
transform: translateX(0%);
animation: ball-newton-cradle-left 1s 0s ease-out infinite;
}
.loading > div:last-child {
transform: translateX(0%);
animation: ball-newton-cradle-right 1s 0s ease-out infinite;
}
.loading.la-sm {
width: 20px;
height: 4px;
}
.loading.la-sm > div {
width: 4px;
height: 4px;
}
.loading.la-2x {
width: 80px;
height: 20px;
}
.loading.la-2x > div {
width: 20px;
height: 20px;
}
.loading.la-3x {
width: 120px;
height: 30px;
}
.loading.la-3x > div {
width: 30px;
height: 30px;
}
@keyframes ball-newton-cradle-left {
25% {
transform: translateX(-100%);
animation-timing-function: ease-in;
}
50% {
transform: translateX(0%);
}
}
@keyframes ball-newton-cradle-right {
50% {
transform: translateX(0%);
}
75% {
transform: translateX(100%);
animation-timing-function: ease-in;
}
100% {
transform: translateX(0%);
}
}
</style>
</head>
<body>
<div class="main" data-tauri-drag-region>
<img src="./img/JsonToClass.png" alt="">
<p class="name">Json To Class</p>
<p class="desc">帮助您更快编码</p>
<div class="loading">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</body>
</html>