add site
78
Site/Temp/1.html
Normal file
1
Site/Temp/1.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="125 206.466 482.556 209.281"><rect width="800" height="600" fill="#243243"/><path fill="#EC2854" stroke="#EC2854" stroke-miterlimit="10" d="M217.198 232.5c-16.597 6.907-52.729 34.028-36.249 58.467 7.288 10.807 19.94 18.442 31.471 22.057 10.732 3.363 23.897-.761 33.709 3.721-2.09 5.103-9.479 23.689-15.812 22.319-11.827-2.544-23.787-.445-33.07 8.485-18.958-26.295-45.97-36.974-75.739-29.676 22.066-27.2 16.719-55.687-6.468-81.622-13.999-15.657-47.993-37.963-69.845-28.853 54.591-22.738 121.119-5.555 172.003 25.102-8.815 3.669-3.617-2.179 0 0zm138.167 0c16.595 6.908 52.729 34.028 36.249 58.467-7.288 10.807-19.939 18.443-31.473 22.059-10.731 3.365-23.896-.762-33.712 3.721 2.104 5.112 9.464 23.671 15.812 22.318 11.826-2.542 23.789-.448 33.068 8.484 18.959-26.294 45.974-36.975 75.738-29.676-22.056-27.206-16.726-55.682 6.471-81.622 13.997-15.654 47.995-37.967 69.847-28.854-54.586-22.733-121.116-5.562-172 25.103 8.817 3.669 3.616-2.18 0 0z"/><path fill="none" d="M723.057 240.921H824.18v56.18H723.057z"/><path fill="#FFF" d="M225.434 293.58h23.199v15.919c6.874-6.563 14.154-11.274 21.841-14.137 7.687-2.863 16.234-4.295 25.64-4.295 20.621 0 34.549 5.552 41.785 16.653 3.979 6.074 5.969 14.766 5.969 26.077v71.95h-24.826v-70.693c0-6.842-1.312-12.358-3.935-16.547-4.344-6.982-12.209-10.473-23.604-10.473-5.789 0-10.538.455-14.246 1.363-6.693 1.536-12.572 4.608-17.636 9.216-4.07 3.701-6.716 7.522-7.937 11.467-1.221 3.945-1.832 9.582-1.832 16.913v58.754h-24.419l.001-112.167z"/><rect width="226" height="600" fill="#243243"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
49
Site/Temp/2.html
Normal file
@ -0,0 +1,49 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Drag and Drop</title>
|
||||
<style type="text/css">
|
||||
#container {
|
||||
width: 300px;
|
||||
padding: 10px;
|
||||
border: 1px solid darkgray;
|
||||
}
|
||||
#container > div {
|
||||
padding: 25px;
|
||||
border: 2px dashed lightgray;
|
||||
color: darkgray;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
function dragOver(ev) {
|
||||
ev.preventDefault();
|
||||
ev.dataTransfer.dropEffect = 'link';
|
||||
}
|
||||
function drop(ev) {
|
||||
ev.preventDefault();
|
||||
var files = ev.dataTransfer.files;
|
||||
var output = [];
|
||||
for (var file of files) {
|
||||
output.push(
|
||||
'<li><strong>',
|
||||
escape(file.name),
|
||||
'</strong> (',
|
||||
file.type || 'n/a',
|
||||
') - ',
|
||||
file.size.toLocaleString(),
|
||||
' bytes',
|
||||
'</li>');
|
||||
}
|
||||
document.getElementById('filelist').innerHTML = output.join('');
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="container" ondrop="drop(event)" ondragover="dragOver(event)">
|
||||
<div>将文件拖放至此处</div>
|
||||
</div>
|
||||
<ul id="filelist"></ul>
|
||||
</body>
|
||||
</html>
|
BIN
Site/Temp/Icon120.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
Site/Temp/Icon20.png
Normal file
After Width: | Height: | Size: 490 B |
BIN
Site/Temp/Icon29.png
Normal file
After Width: | Height: | Size: 730 B |
BIN
Site/Temp/Icon40.png
Normal file
After Width: | Height: | Size: 1006 B |
BIN
Site/Temp/Icon60.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
Site/Temp/Icon80.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
Site/Temp/Icon87.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
Site/Temp/fa-duotone-900.eot
Normal file
BIN
Site/Temp/fa-duotone-900.ttf
Normal file
BIN
Site/Temp/fa-duotone-900.woff
Normal file
BIN
Site/Temp/fa-duotone-900.woff2
Normal file
48
Site/Temp/font.css
Normal file
@ -0,0 +1,48 @@
|
||||
.fad {
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
display: inline-block;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
text-rendering: auto;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Font Awesome 5 Duotone";
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
font-display: block;
|
||||
src: url(webfonts/fa-duotone-900.eot);
|
||||
src: url(webfonts/fa-duotone-900.eot?#iefix) format("embedded-opentype"),
|
||||
url(webfonts/fa-duotone-900.woff2) format("woff2"),
|
||||
url(webfonts/fa-duotone-900.woff) format("woff"),
|
||||
url(webfonts/fa-duotone-900.ttf) format("truetype"),
|
||||
url(webfonts/fa-duotone-900.svg#fontawesome) format("svg")
|
||||
}
|
||||
|
||||
.fad {
|
||||
position: relative;
|
||||
font-family: "Font Awesome 5 Duotone";
|
||||
font-weight: 900;
|
||||
color: #183153;
|
||||
}
|
||||
|
||||
.fad:before {
|
||||
position: absolute;
|
||||
color: var(--fa-primary-color,inherit);
|
||||
opacity: 1;
|
||||
opacity: var(--fa-primary-opacity,1);
|
||||
}
|
||||
|
||||
.fad:after {
|
||||
color: var(--fa-secondary-color,inherit);
|
||||
opacity: var(--fa-secondary-opacity,.4);
|
||||
}
|
||||
|
||||
.fa-plus:before {
|
||||
content: "\f067"
|
||||
}
|
||||
.fad.fa-plus:after {
|
||||
content: "\10f067"
|
||||
}
|
10
Site/Temp/pencil.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" >
|
||||
<g fill="#183153" transform="translate(0, 448) scale(1, -1)">
|
||||
<path d="M0.370117 -35.8496l16.1201 67.3594l79 -79l-67.3203 -16.1602c-1.36035 -0.236328 -2.71484 -0.360352 -4.14258 -0.360352s-2.82715 0.124023 -4.1875 0.360352c-11.252 1.9834 -19.834 11.7969 -19.834 23.6143c0 1.42773 0.125 2.82715 0.364258 4.18652z
|
||||
M412.3 237.22c2.16309 -2.1709 3.50098 -5.16797 3.50098 -8.47168c0 -3.31836 -1.34961 -6.3252 -3.53125 -8.49805l-252.27 -252.25v64h-64v64h-64l252.2 252.22c2.19336 2.17969 5.21777 3.52734 8.55176 3.52734c3.33301 0 6.35449 -1.34766 8.54785 -3.52734z
|
||||
M297.89 262.15c2.53418 2.53418 4.09961 6.03809 4.09961 9.90137c0 7.72754 -6.27441 14.001 -14.001 14.001c-3.86426 0 -7.36426 -1.56836 -9.89844 -4.10254l-154 -154c-2.53418 -2.53418 -4.09863 -6.03809 -4.09863 -9.90234
|
||||
c0 -7.72656 6.27344 -14.001 14.001 -14.001c3.86328 0 7.36328 1.56836 9.89746 4.10352z" />
|
||||
<path style="opacity:.4" d="M96 96v-64h64v-64l-64 -16l-80 80l16 64h64zM498 373.74c8.625 -8.66895 13.959 -20.6289 13.959 -33.8115c0 -13.249 -5.3877 -25.249 -14.0889 -33.9287l-46.1006 -46.0996c-2.17285 -2.18164 -5.18164 -3.53125 -8.50098 -3.53125s-6.3252 1.34961 -8.49902 3.53125
|
||||
l-111 111c-2.18066 2.17285 -3.53125 5.18262 -3.53125 8.50098c0 3.31934 1.35059 6.3252 3.53125 8.49902l46.1006 46.0996c8.7002 8.67285 20.7139 14.0371 33.957 14.0371s25.2422 -5.36426 33.9424 -14.0371l60.1201 -60.1504z" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
10
Site/Temp/pic.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" >
|
||||
<g transform="translate(0, 448) scale(1, -1)">
|
||||
<path d="M0.370117 -35.8496l16.1201 67.3594l79 -79l-67.3203 -16.1602c-1.36035 -0.236328 -2.71484 -0.360352 -4.14258 -0.360352s-2.82715 0.124023 -4.1875 0.360352c-11.252 1.9834 -19.834 11.7969 -19.834 23.6143c0 1.42773 0.125 2.82715 0.364258 4.18652z
|
||||
M412.3 237.22c2.16309 -2.1709 3.50098 -5.16797 3.50098 -8.47168c0 -3.31836 -1.34961 -6.3252 -3.53125 -8.49805l-252.27 -252.25v64h-64v64h-64l252.2 252.22c2.19336 2.17969 5.21777 3.52734 8.55176 3.52734c3.33301 0 6.35449 -1.34766 8.54785 -3.52734z
|
||||
M297.89 262.15c2.53418 2.53418 4.09961 6.03809 4.09961 9.90137c0 7.72754 -6.27441 14.001 -14.001 14.001c-3.86426 0 -7.36426 -1.56836 -9.89844 -4.10254l-154 -154c-2.53418 -2.53418 -4.09863 -6.03809 -4.09863 -9.90234
|
||||
c0 -7.72656 6.27344 -14.001 14.001 -14.001c3.86328 0 7.36328 1.56836 9.89746 4.10352z" />
|
||||
<path style="opacity:.4" d="M96 96v-64h64v-64l-64 -16l-80 80l16 64h64zM498 373.74c8.625 -8.66895 13.959 -20.6289 13.959 -33.8115c0 -13.249 -5.3877 -25.249 -14.0889 -33.9287l-46.1006 -46.0996c-2.17285 -2.18164 -5.18164 -3.53125 -8.50098 -3.53125s-6.3252 1.34961 -8.49902 3.53125
|
||||
l-111 111c-2.18066 2.17285 -3.53125 5.18262 -3.53125 8.50098c0 3.31934 1.35059 6.3252 3.53125 8.49902l46.1006 46.0996c8.7002 8.67285 20.7139 14.0371 33.957 14.0371s25.2422 -5.36426 33.9424 -14.0371l60.1201 -60.1504z" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
3
Site/Temp/test.csv
Normal file
@ -0,0 +1,3 @@
|
||||
DateTime,Category,Detail
|
||||
2022/3/15 10:22:02,database.init.account,Error test at \n asdfsdf in aasdf \n sdfdf
|
||||
2022/3/15 10:23:02,database.init.bill,Error test at \n asdfsdf in aasdf \n sdfdf
|
|
BIN
Site/Temp/webfonts/fa-duotone-900.eot
Normal file
15328
Site/Temp/webfonts/fa-duotone-900.svg
Normal file
After Width: | Height: | Size: 2.5 MiB |