同步
539
assets/font/demo.css
Normal file
@@ -0,0 +1,539 @@
|
||||
/* Logo 字体 */
|
||||
@font-face {
|
||||
font-family: "iconfont logo";
|
||||
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834');
|
||||
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'),
|
||||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'),
|
||||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'),
|
||||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg');
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-family: "iconfont logo";
|
||||
font-size: 160px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
/* tabs */
|
||||
.nav-tabs {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-tabs .nav-more {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
height: 42px;
|
||||
line-height: 42px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
#tabs {
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
#tabs li {
|
||||
cursor: pointer;
|
||||
width: 100px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
border-bottom: 2px solid transparent;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
margin-bottom: -1px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
|
||||
#tabs .active {
|
||||
border-bottom-color: #f00;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.tab-container .content {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* 页面布局 */
|
||||
.main {
|
||||
padding: 30px 100px;
|
||||
width: 960px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.main .logo {
|
||||
color: #333;
|
||||
text-align: left;
|
||||
margin-bottom: 30px;
|
||||
line-height: 1;
|
||||
height: 110px;
|
||||
margin-top: -50px;
|
||||
overflow: hidden;
|
||||
*zoom: 1;
|
||||
}
|
||||
|
||||
.main .logo a {
|
||||
font-size: 160px;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.helps {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.helps pre {
|
||||
padding: 20px;
|
||||
margin: 10px 0;
|
||||
border: solid 1px #e7e1cd;
|
||||
background-color: #fffdef;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.icon_lists {
|
||||
width: 100% !important;
|
||||
overflow: hidden;
|
||||
*zoom: 1;
|
||||
}
|
||||
|
||||
.icon_lists li {
|
||||
width: 100px;
|
||||
margin-bottom: 10px;
|
||||
margin-right: 20px;
|
||||
text-align: center;
|
||||
list-style: none !important;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.icon_lists li .code-name {
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.icon_lists .icon {
|
||||
display: block;
|
||||
height: 100px;
|
||||
line-height: 100px;
|
||||
font-size: 42px;
|
||||
margin: 10px auto;
|
||||
color: #333;
|
||||
-webkit-transition: font-size 0.25s linear, width 0.25s linear;
|
||||
-moz-transition: font-size 0.25s linear, width 0.25s linear;
|
||||
transition: font-size 0.25s linear, width 0.25s linear;
|
||||
}
|
||||
|
||||
.icon_lists .icon:hover {
|
||||
font-size: 100px;
|
||||
}
|
||||
|
||||
.icon_lists .svg-icon {
|
||||
/* 通过设置 font-size 来改变图标大小 */
|
||||
width: 1em;
|
||||
/* 图标和文字相邻时,垂直对齐 */
|
||||
vertical-align: -0.15em;
|
||||
/* 通过设置 color 来改变 SVG 的颜色/fill */
|
||||
fill: currentColor;
|
||||
/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示
|
||||
normalize.css 中也包含这行 */
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.icon_lists li .name,
|
||||
.icon_lists li .code-name {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* markdown 样式 */
|
||||
.markdown {
|
||||
color: #666;
|
||||
font-size: 14px;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.markdown img {
|
||||
vertical-align: middle;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.markdown h1 {
|
||||
color: #404040;
|
||||
font-weight: 500;
|
||||
line-height: 40px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.markdown h2,
|
||||
.markdown h3,
|
||||
.markdown h4,
|
||||
.markdown h5,
|
||||
.markdown h6 {
|
||||
color: #404040;
|
||||
margin: 1.6em 0 0.6em 0;
|
||||
font-weight: 500;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.markdown h1 {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.markdown h2 {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.markdown h3 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.markdown h4 {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.markdown h5 {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.markdown h6 {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.markdown hr {
|
||||
height: 1px;
|
||||
border: 0;
|
||||
background: #e9e9e9;
|
||||
margin: 16px 0;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.markdown p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.markdown>p,
|
||||
.markdown>blockquote,
|
||||
.markdown>.highlight,
|
||||
.markdown>ol,
|
||||
.markdown>ul {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.markdown ul>li {
|
||||
list-style: circle;
|
||||
}
|
||||
|
||||
.markdown>ul li,
|
||||
.markdown blockquote ul>li {
|
||||
margin-left: 20px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.markdown>ul li p,
|
||||
.markdown>ol li p {
|
||||
margin: 0.6em 0;
|
||||
}
|
||||
|
||||
.markdown ol>li {
|
||||
list-style: decimal;
|
||||
}
|
||||
|
||||
.markdown>ol li,
|
||||
.markdown blockquote ol>li {
|
||||
margin-left: 20px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.markdown code {
|
||||
margin: 0 3px;
|
||||
padding: 0 5px;
|
||||
background: #eee;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.markdown strong,
|
||||
.markdown b {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.markdown>table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
empty-cells: show;
|
||||
border: 1px solid #e9e9e9;
|
||||
width: 95%;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.markdown>table th {
|
||||
white-space: nowrap;
|
||||
color: #333;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.markdown>table th,
|
||||
.markdown>table td {
|
||||
border: 1px solid #e9e9e9;
|
||||
padding: 8px 16px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.markdown>table th {
|
||||
background: #F7F7F7;
|
||||
}
|
||||
|
||||
.markdown blockquote {
|
||||
font-size: 90%;
|
||||
color: #999;
|
||||
border-left: 4px solid #e9e9e9;
|
||||
padding-left: 0.8em;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.markdown blockquote p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.markdown .anchor {
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.markdown .waiting {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.markdown h1:hover .anchor,
|
||||
.markdown h2:hover .anchor,
|
||||
.markdown h3:hover .anchor,
|
||||
.markdown h4:hover .anchor,
|
||||
.markdown h5:hover .anchor,
|
||||
.markdown h6:hover .anchor {
|
||||
opacity: 1;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.markdown>br,
|
||||
.markdown>p>br {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: white;
|
||||
padding: 0.5em;
|
||||
color: #333333;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-meta {
|
||||
color: #969896;
|
||||
}
|
||||
|
||||
.hljs-string,
|
||||
.hljs-variable,
|
||||
.hljs-template-variable,
|
||||
.hljs-strong,
|
||||
.hljs-emphasis,
|
||||
.hljs-quote {
|
||||
color: #df5000;
|
||||
}
|
||||
|
||||
.hljs-keyword,
|
||||
.hljs-selector-tag,
|
||||
.hljs-type {
|
||||
color: #a71d5d;
|
||||
}
|
||||
|
||||
.hljs-literal,
|
||||
.hljs-symbol,
|
||||
.hljs-bullet,
|
||||
.hljs-attribute {
|
||||
color: #0086b3;
|
||||
}
|
||||
|
||||
.hljs-section,
|
||||
.hljs-name {
|
||||
color: #63a35c;
|
||||
}
|
||||
|
||||
.hljs-tag {
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.hljs-title,
|
||||
.hljs-attr,
|
||||
.hljs-selector-id,
|
||||
.hljs-selector-class,
|
||||
.hljs-selector-attr,
|
||||
.hljs-selector-pseudo {
|
||||
color: #795da3;
|
||||
}
|
||||
|
||||
.hljs-addition {
|
||||
color: #55a532;
|
||||
background-color: #eaffea;
|
||||
}
|
||||
|
||||
.hljs-deletion {
|
||||
color: #bd2c00;
|
||||
background-color: #ffecec;
|
||||
}
|
||||
|
||||
.hljs-link {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* 代码高亮 */
|
||||
/* PrismJS 1.15.0
|
||||
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
|
||||
/**
|
||||
* prism.js default theme for JavaScript, CSS and HTML
|
||||
* Based on dabblet (http://dabblet.com)
|
||||
* @author Lea Verou
|
||||
*/
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
color: black;
|
||||
background: none;
|
||||
text-shadow: 0 1px white;
|
||||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
||||
text-align: left;
|
||||
white-space: pre;
|
||||
word-spacing: normal;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
line-height: 1.5;
|
||||
|
||||
-moz-tab-size: 4;
|
||||
-o-tab-size: 4;
|
||||
tab-size: 4;
|
||||
|
||||
-webkit-hyphens: none;
|
||||
-moz-hyphens: none;
|
||||
-ms-hyphens: none;
|
||||
hyphens: none;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::-moz-selection,
|
||||
pre[class*="language-"] ::-moz-selection,
|
||||
code[class*="language-"]::-moz-selection,
|
||||
code[class*="language-"] ::-moz-selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::selection,
|
||||
pre[class*="language-"] ::selection,
|
||||
code[class*="language-"]::selection,
|
||||
code[class*="language-"] ::selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
@media print {
|
||||
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
text-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Code blocks */
|
||||
pre[class*="language-"] {
|
||||
padding: 1em;
|
||||
margin: .5em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
:not(pre)>code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
background: #f5f2f0;
|
||||
}
|
||||
|
||||
/* Inline code */
|
||||
:not(pre)>code[class*="language-"] {
|
||||
padding: .1em;
|
||||
border-radius: .3em;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.token.comment,
|
||||
.token.prolog,
|
||||
.token.doctype,
|
||||
.token.cdata {
|
||||
color: slategray;
|
||||
}
|
||||
|
||||
.token.punctuation {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.namespace {
|
||||
opacity: .7;
|
||||
}
|
||||
|
||||
.token.property,
|
||||
.token.tag,
|
||||
.token.boolean,
|
||||
.token.number,
|
||||
.token.constant,
|
||||
.token.symbol,
|
||||
.token.deleted {
|
||||
color: #905;
|
||||
}
|
||||
|
||||
.token.selector,
|
||||
.token.attr-name,
|
||||
.token.string,
|
||||
.token.char,
|
||||
.token.builtin,
|
||||
.token.inserted {
|
||||
color: #690;
|
||||
}
|
||||
|
||||
.token.operator,
|
||||
.token.entity,
|
||||
.token.url,
|
||||
.language-css .token.string,
|
||||
.style .token.string {
|
||||
color: #9a6e3a;
|
||||
background: hsla(0, 0%, 100%, .5);
|
||||
}
|
||||
|
||||
.token.atrule,
|
||||
.token.attr-value,
|
||||
.token.keyword {
|
||||
color: #07a;
|
||||
}
|
||||
|
||||
.token.function,
|
||||
.token.class-name {
|
||||
color: #DD4A68;
|
||||
}
|
||||
|
||||
.token.regex,
|
||||
.token.important,
|
||||
.token.variable {
|
||||
color: #e90;
|
||||
}
|
||||
|
||||
.token.important,
|
||||
.token.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.token.italic {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.token.entity {
|
||||
cursor: help;
|
||||
}
|
||||
421
assets/font/demo_index.html
Normal file
@@ -0,0 +1,421 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>iconfont Demo</title>
|
||||
<link rel="shortcut icon" href="//img.alicdn.com/imgextra/i4/O1CN01Z5paLz1O0zuCC7osS_!!6000000001644-55-tps-83-82.svg" type="image/x-icon" />
|
||||
<link rel="icon" type="image/svg+xml" href="//img.alicdn.com/imgextra/i4/O1CN01Z5paLz1O0zuCC7osS_!!6000000001644-55-tps-83-82.svg" />
|
||||
<link rel="stylesheet" href="https://g.alicdn.com/thx/cube/1.3.2/cube.min.css">
|
||||
<link rel="stylesheet" href="demo.css">
|
||||
<link rel="stylesheet" href="iconfont.css">
|
||||
<script src="iconfont.js"></script>
|
||||
<!-- jQuery -->
|
||||
<script src="https://a1.alicdn.com/oss/uploads/2018/12/26/7bfddb60-08e8-11e9-9b04-53e73bb6408b.js"></script>
|
||||
<!-- 代码高亮 -->
|
||||
<script src="https://a1.alicdn.com/oss/uploads/2018/12/26/a3f714d0-08e6-11e9-8a15-ebf944d7534c.js"></script>
|
||||
<style>
|
||||
.main .logo {
|
||||
margin-top: 0;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.main .logo a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.main .logo .sub-title {
|
||||
margin-left: 0.5em;
|
||||
font-size: 22px;
|
||||
color: #fff;
|
||||
background: linear-gradient(-45deg, #3967FF, #B500FE);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="main">
|
||||
<h1 class="logo"><a href="https://www.iconfont.cn/" title="iconfont 首页" target="_blank">
|
||||
<img width="200" src="https://img.alicdn.com/imgextra/i3/O1CN01Mn65HV1FfSEzR6DKv_!!6000000000514-55-tps-228-59.svg">
|
||||
|
||||
</a></h1>
|
||||
<div class="nav-tabs">
|
||||
<ul id="tabs" class="dib-box">
|
||||
<li class="dib active"><span>Unicode</span></li>
|
||||
<li class="dib"><span>Font class</span></li>
|
||||
<li class="dib"><span>Symbol</span></li>
|
||||
</ul>
|
||||
|
||||
<a href="https://www.iconfont.cn/manage/index?manage_type=myprojects&projectId=3891180" target="_blank" class="nav-more">查看项目</a>
|
||||
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<div class="content unicode" style="display: block;">
|
||||
<ul class="icon_lists dib-box">
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont"></span>
|
||||
<div class="name">double</div>
|
||||
<div class="code-name">&#xe61a;</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont"></span>
|
||||
<div class="name">upload</div>
|
||||
<div class="code-name">&#xe6b7;</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont"></span>
|
||||
<div class="name">top</div>
|
||||
<div class="code-name">&#xe626;</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont"></span>
|
||||
<div class="name">search</div>
|
||||
<div class="code-name">&#xe6e1;</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont"></span>
|
||||
<div class="name">menu</div>
|
||||
<div class="code-name">&#xe6a9;</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont"></span>
|
||||
<div class="name">指向-bottom</div>
|
||||
<div class="code-name">&#xe674;</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont"></span>
|
||||
<div class="name">chevrons-bottom</div>
|
||||
<div class="code-name">&#xe644;</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont"></span>
|
||||
<div class="name">right</div>
|
||||
<div class="code-name">&#xe78a;</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont"></span>
|
||||
<div class="name">right</div>
|
||||
<div class="code-name">&#xe68b;</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont"></span>
|
||||
<div class="name">arrow-right</div>
|
||||
<div class="code-name">&#xe743;</div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
<div class="article markdown">
|
||||
<h2 id="unicode-">Unicode 引用</h2>
|
||||
<hr>
|
||||
|
||||
<p>Unicode 是字体在网页端最原始的应用方式,特点是:</p>
|
||||
<ul>
|
||||
<li>支持按字体的方式去动态调整图标大小,颜色等等。</li>
|
||||
<li>默认情况下不支持多色,直接添加多色图标会自动去色。</li>
|
||||
</ul>
|
||||
<blockquote>
|
||||
<p>注意:新版 iconfont 支持两种方式引用多色图标:SVG symbol 引用方式和彩色字体图标模式。(使用彩色字体图标需要在「编辑项目」中开启「彩色」选项后并重新生成。)</p>
|
||||
</blockquote>
|
||||
<p>Unicode 使用步骤如下:</p>
|
||||
<h3 id="-font-face">第一步:拷贝项目下面生成的 <code>@font-face</code></h3>
|
||||
<pre><code class="language-css"
|
||||
>@font-face {
|
||||
font-family: 'iconfont';
|
||||
src: url('iconfont.woff2?t=1677325584554') format('woff2'),
|
||||
url('iconfont.woff?t=1677325584554') format('woff'),
|
||||
url('iconfont.ttf?t=1677325584554') format('truetype');
|
||||
}
|
||||
</code></pre>
|
||||
<h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
|
||||
<pre><code class="language-css"
|
||||
>.iconfont {
|
||||
font-family: "iconfont" !important;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
</code></pre>
|
||||
<h3 id="-">第三步:挑选相应图标并获取字体编码,应用于页面</h3>
|
||||
<pre>
|
||||
<code class="language-html"
|
||||
><span class="iconfont">&#x33;</span>
|
||||
</code></pre>
|
||||
<blockquote>
|
||||
<p>"iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。</p>
|
||||
</blockquote>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content font-class">
|
||||
<ul class="icon_lists dib-box">
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont icon-double"></span>
|
||||
<div class="name">
|
||||
double
|
||||
</div>
|
||||
<div class="code-name">.icon-double
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont icon-upload"></span>
|
||||
<div class="name">
|
||||
upload
|
||||
</div>
|
||||
<div class="code-name">.icon-upload
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont icon-top"></span>
|
||||
<div class="name">
|
||||
top
|
||||
</div>
|
||||
<div class="code-name">.icon-top
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont icon-search"></span>
|
||||
<div class="name">
|
||||
search
|
||||
</div>
|
||||
<div class="code-name">.icon-search
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont icon-menu"></span>
|
||||
<div class="name">
|
||||
menu
|
||||
</div>
|
||||
<div class="code-name">.icon-menu
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont icon-bottom"></span>
|
||||
<div class="name">
|
||||
指向-bottom
|
||||
</div>
|
||||
<div class="code-name">.icon-bottom
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont icon-chevrons-bottom"></span>
|
||||
<div class="name">
|
||||
chevrons-bottom
|
||||
</div>
|
||||
<div class="code-name">.icon-chevrons-bottom
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont icon-right1"></span>
|
||||
<div class="name">
|
||||
right
|
||||
</div>
|
||||
<div class="code-name">.icon-right1
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont icon-right"></span>
|
||||
<div class="name">
|
||||
right
|
||||
</div>
|
||||
<div class="code-name">.icon-right
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<span class="icon iconfont icon-arrow-right"></span>
|
||||
<div class="name">
|
||||
arrow-right
|
||||
</div>
|
||||
<div class="code-name">.icon-arrow-right
|
||||
</div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
<div class="article markdown">
|
||||
<h2 id="font-class-">font-class 引用</h2>
|
||||
<hr>
|
||||
|
||||
<p>font-class 是 Unicode 使用方式的一种变种,主要是解决 Unicode 书写不直观,语意不明确的问题。</p>
|
||||
<p>与 Unicode 使用方式相比,具有如下特点:</p>
|
||||
<ul>
|
||||
<li>相比于 Unicode 语意明确,书写更直观。可以很容易分辨这个 icon 是什么。</li>
|
||||
<li>因为使用 class 来定义图标,所以当要替换图标时,只需要修改 class 里面的 Unicode 引用。</li>
|
||||
</ul>
|
||||
<p>使用步骤如下:</p>
|
||||
<h3 id="-fontclass-">第一步:引入项目下面生成的 fontclass 代码:</h3>
|
||||
<pre><code class="language-html"><link rel="stylesheet" href="./iconfont.css">
|
||||
</code></pre>
|
||||
<h3 id="-">第二步:挑选相应图标并获取类名,应用于页面:</h3>
|
||||
<pre><code class="language-html"><span class="iconfont icon-xxx"></span>
|
||||
</code></pre>
|
||||
<blockquote>
|
||||
<p>"
|
||||
iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。</p>
|
||||
</blockquote>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content symbol">
|
||||
<ul class="icon_lists dib-box">
|
||||
|
||||
<li class="dib">
|
||||
<svg class="icon svg-icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-double"></use>
|
||||
</svg>
|
||||
<div class="name">double</div>
|
||||
<div class="code-name">#icon-double</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<svg class="icon svg-icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-upload"></use>
|
||||
</svg>
|
||||
<div class="name">upload</div>
|
||||
<div class="code-name">#icon-upload</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<svg class="icon svg-icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-top"></use>
|
||||
</svg>
|
||||
<div class="name">top</div>
|
||||
<div class="code-name">#icon-top</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<svg class="icon svg-icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-search"></use>
|
||||
</svg>
|
||||
<div class="name">search</div>
|
||||
<div class="code-name">#icon-search</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<svg class="icon svg-icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-menu"></use>
|
||||
</svg>
|
||||
<div class="name">menu</div>
|
||||
<div class="code-name">#icon-menu</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<svg class="icon svg-icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-bottom"></use>
|
||||
</svg>
|
||||
<div class="name">指向-bottom</div>
|
||||
<div class="code-name">#icon-bottom</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<svg class="icon svg-icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-chevrons-bottom"></use>
|
||||
</svg>
|
||||
<div class="name">chevrons-bottom</div>
|
||||
<div class="code-name">#icon-chevrons-bottom</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<svg class="icon svg-icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-right1"></use>
|
||||
</svg>
|
||||
<div class="name">right</div>
|
||||
<div class="code-name">#icon-right1</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<svg class="icon svg-icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-right"></use>
|
||||
</svg>
|
||||
<div class="name">right</div>
|
||||
<div class="code-name">#icon-right</div>
|
||||
</li>
|
||||
|
||||
<li class="dib">
|
||||
<svg class="icon svg-icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-arrow-right"></use>
|
||||
</svg>
|
||||
<div class="name">arrow-right</div>
|
||||
<div class="code-name">#icon-arrow-right</div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
<div class="article markdown">
|
||||
<h2 id="symbol-">Symbol 引用</h2>
|
||||
<hr>
|
||||
|
||||
<p>这是一种全新的使用方式,应该说这才是未来的主流,也是平台目前推荐的用法。相关介绍可以参考这篇<a href="">文章</a>
|
||||
这种用法其实是做了一个 SVG 的集合,与另外两种相比具有如下特点:</p>
|
||||
<ul>
|
||||
<li>支持多色图标了,不再受单色限制。</li>
|
||||
<li>通过一些技巧,支持像字体那样,通过 <code>font-size</code>, <code>color</code> 来调整样式。</li>
|
||||
<li>兼容性较差,支持 IE9+,及现代浏览器。</li>
|
||||
<li>浏览器渲染 SVG 的性能一般,还不如 png。</li>
|
||||
</ul>
|
||||
<p>使用步骤如下:</p>
|
||||
<h3 id="-symbol-">第一步:引入项目下面生成的 symbol 代码:</h3>
|
||||
<pre><code class="language-html"><script src="./iconfont.js"></script>
|
||||
</code></pre>
|
||||
<h3 id="-css-">第二步:加入通用 CSS 代码(引入一次就行):</h3>
|
||||
<pre><code class="language-html"><style>
|
||||
.icon {
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
vertical-align: -0.15em;
|
||||
fill: currentColor;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
</code></pre>
|
||||
<h3 id="-">第三步:挑选相应图标并获取类名,应用于页面:</h3>
|
||||
<pre><code class="language-html"><svg class="icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-xxx"></use>
|
||||
</svg>
|
||||
</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$('.tab-container .content:first').show()
|
||||
|
||||
$('#tabs li').click(function(e) {
|
||||
var tabContent = $('.tab-container .content')
|
||||
var index = $(this).index()
|
||||
|
||||
if ($(this).hasClass('active')) {
|
||||
return
|
||||
} else {
|
||||
$('#tabs li').removeClass('active')
|
||||
$(this).addClass('active')
|
||||
|
||||
tabContent.hide().eq(index).fadeIn()
|
||||
}
|
||||
})
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
55
assets/font/iconfont.css
Normal file
@@ -0,0 +1,55 @@
|
||||
@font-face {
|
||||
font-family: "iconfont"; /* Project id 3891180 */
|
||||
src: url('iconfont.woff2?t=1677325584554') format('woff2'),
|
||||
url('iconfont.woff?t=1677325584554') format('woff'),
|
||||
url('iconfont.ttf?t=1677325584554') format('truetype');
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
font-family: "iconfont" !important;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.icon-double:before {
|
||||
content: "\e61a";
|
||||
}
|
||||
|
||||
.icon-upload:before {
|
||||
content: "\e6b7";
|
||||
}
|
||||
|
||||
.icon-top:before {
|
||||
content: "\e626";
|
||||
}
|
||||
|
||||
.icon-search:before {
|
||||
content: "\e6e1";
|
||||
}
|
||||
|
||||
.icon-menu:before {
|
||||
content: "\e6a9";
|
||||
}
|
||||
|
||||
.icon-bottom:before {
|
||||
content: "\e674";
|
||||
}
|
||||
|
||||
.icon-chevrons-bottom:before {
|
||||
content: "\e644";
|
||||
}
|
||||
|
||||
.icon-right1:before {
|
||||
content: "\e78a";
|
||||
}
|
||||
|
||||
.icon-right:before {
|
||||
content: "\e68b";
|
||||
}
|
||||
|
||||
.icon-arrow-right:before {
|
||||
content: "\e743";
|
||||
}
|
||||
|
||||
1
assets/font/iconfont.js
Normal file
79
assets/font/iconfont.json
Normal file
@@ -0,0 +1,79 @@
|
||||
{
|
||||
"id": "3891180",
|
||||
"name": "官网",
|
||||
"font_family": "iconfont",
|
||||
"css_prefix_text": "icon-",
|
||||
"description": "",
|
||||
"glyphs": [
|
||||
{
|
||||
"icon_id": "12225087",
|
||||
"name": "double",
|
||||
"font_class": "double",
|
||||
"unicode": "e61a",
|
||||
"unicode_decimal": 58906
|
||||
},
|
||||
{
|
||||
"icon_id": "4114428",
|
||||
"name": "upload",
|
||||
"font_class": "upload",
|
||||
"unicode": "e6b7",
|
||||
"unicode_decimal": 59063
|
||||
},
|
||||
{
|
||||
"icon_id": "1212618",
|
||||
"name": "top",
|
||||
"font_class": "top",
|
||||
"unicode": "e626",
|
||||
"unicode_decimal": 58918
|
||||
},
|
||||
{
|
||||
"icon_id": "10678434",
|
||||
"name": "search",
|
||||
"font_class": "search",
|
||||
"unicode": "e6e1",
|
||||
"unicode_decimal": 59105
|
||||
},
|
||||
{
|
||||
"icon_id": "250843",
|
||||
"name": "menu",
|
||||
"font_class": "menu",
|
||||
"unicode": "e6a9",
|
||||
"unicode_decimal": 59049
|
||||
},
|
||||
{
|
||||
"icon_id": "1766267",
|
||||
"name": "指向-bottom",
|
||||
"font_class": "bottom",
|
||||
"unicode": "e674",
|
||||
"unicode_decimal": 58996
|
||||
},
|
||||
{
|
||||
"icon_id": "14464997",
|
||||
"name": "chevrons-bottom",
|
||||
"font_class": "chevrons-bottom",
|
||||
"unicode": "e644",
|
||||
"unicode_decimal": 58948
|
||||
},
|
||||
{
|
||||
"icon_id": "11231664",
|
||||
"name": "right",
|
||||
"font_class": "right1",
|
||||
"unicode": "e78a",
|
||||
"unicode_decimal": 59274
|
||||
},
|
||||
{
|
||||
"icon_id": "4448581",
|
||||
"name": "right",
|
||||
"font_class": "right",
|
||||
"unicode": "e68b",
|
||||
"unicode_decimal": 59019
|
||||
},
|
||||
{
|
||||
"icon_id": "11487977",
|
||||
"name": "arrow-right",
|
||||
"font_class": "arrow-right",
|
||||
"unicode": "e743",
|
||||
"unicode_decimal": 59203
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
assets/font/iconfont.ttf
Normal file
BIN
assets/font/iconfont.woff
Normal file
BIN
assets/font/iconfont.woff2
Normal file
BIN
assets/img/about/banner.png
Normal file
|
After Width: | Height: | Size: 103 KiB |
BIN
assets/img/about/mid-bg.png
Normal file
|
After Width: | Height: | Size: 143 KiB |
BIN
assets/img/about/mid-item-bg-1.png
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
BIN
assets/img/about/mid-item-bg-2.png
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
assets/img/about/mid-item-bg-3.png
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
BIN
assets/img/about/mid-item-bg-4.png
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
assets/img/about/mid-item-bg-5.png
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
assets/img/about/success-icon.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
assets/img/active/active_banner.png
Normal file
|
After Width: | Height: | Size: 1.9 MiB |
3
assets/img/active/horn.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg t="1679887796110" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1265" width="17" height="15">
|
||||
<path d="M525.541411 131.503033l-230.494605 148.031475h-114.988917c-63.895239 0-115.679649 51.14996-115.679649 115.219161v230.898811c0 63.664995 51.150984 115.219161 115.679649 115.219161h114.988917l230.494605 147.915841c32.582069 14.128789 57.840336-0.980327 57.840336-33.04358V164.54559c0-32.120558-25.892717-46.825468-57.840336-33.042557z m194.223516 186.033997c-10.841929-11.649318-29.122271-12.283768-40.712237-1.384533-11.649318 10.899234-12.226462 29.122271-1.384533 40.770565 5.363148 5.76633 14.531971 18.511609 23.989367 37.772279 16.146749 32.870642 25.892717 71.449285 25.892717 115.507733 0 44.058448-9.745968 82.694397-25.892717 115.507734-9.457396 19.259646-18.626219 32.004925-23.989367 37.772278-10.899234 11.648294-10.264784 29.871331 1.384533 40.770566 11.648294 10.899234 29.871331 10.264784 40.770566-1.384533 9.054213-9.68764 21.509896-26.987654 33.620725-51.727105 19.895119-40.483017 31.774681-87.654362 31.774681-140.996245 0-53.341882-11.879562-100.514251-31.774681-140.996244-12.169157-24.62484-24.625864-41.983183-33.679054-51.612495z m176.806845-35.69599c-23.297612-39.444361-46.825468-66.778916-63.318094-81.483826-11.880585-10.609639-30.102598-9.572006-40.714284 2.36486-10.609639 11.936867-9.573029 30.101575 2.364861 40.712238 2.709715 2.421142 8.131191 7.842619 15.396665 16.261358 12.455683 14.416338 24.911366 31.601742 36.619012 51.439556 33.504068 56.860009 53.630455 123.349329 53.630455 199.066825s-20.126386 142.206816-53.68776 199.125153c-11.706623 19.836791-24.220634 37.022195-36.619012 51.438533-7.265474 8.41874-12.68695 13.840216-15.397689 16.261359-11.879562 10.610662-12.916171 28.833699-2.363837 40.714283 10.553357 11.879562 28.833699 12.916171 40.713261 2.363838 16.493649-14.70491 40.021505-41.98216 63.319117-81.483826 38.522362-65.336054 61.646012-141.745305 61.646012-228.41934 0.058328-86.614683-23.066345-163.023934-61.588707-228.361011z" fill="#FF6739" p-id="1266"></path>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
5
assets/img/active/tip_icon.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg t="1679969866676" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9953" width="14" height="14">
|
||||
<path d="M512 42.666667a469.333333 469.333333 0 1 0 469.333333 469.333333A469.333333 469.333333 0 0 0 512 42.666667z m0 864a394.666667 394.666667 0 1 1 394.666667-394.666667 395.146667 395.146667 0 0 1-394.666667 394.666667z" p-id="9954" fill="#FF6739"></path>
|
||||
<path d="M474.666667 695.52m5.333333 0l64 0q5.333333 0 5.333333 5.333333l0 64q0 5.333333-5.333333 5.333334l-64 0q-5.333333 0-5.333333-5.333334l0-64q0-5.333333 5.333333-5.333333Z" p-id="9955" fill="#FF6739"></path>
|
||||
<path d="M474.666667 253.813333m5.333333 0l64 0q5.333333 0 5.333333 5.333334l0 362.666666q0 5.333333-5.333333 5.333334l-64 0q-5.333333 0-5.333333-5.333334l0-362.666666q0-5.333333 5.333333-5.333334Z" p-id="9956" fill="#FF6739"></path>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 912 B |
BIN
assets/img/agent/group-1.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
assets/img/agent/group-10.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
assets/img/agent/group-11.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
assets/img/agent/group-2.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
assets/img/agent/group-3.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
assets/img/agent/group-4.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
assets/img/agent/group-5.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
assets/img/agent/group-6.png
Normal file
|
After Width: | Height: | Size: 45 KiB |
BIN
assets/img/agent/group-7.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
assets/img/agent/group-8.png
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
assets/img/agent/group-9.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
assets/img/announce/banner.png
Normal file
|
After Width: | Height: | Size: 152 KiB |
BIN
assets/img/cloud/banner.png
Normal file
|
After Width: | Height: | Size: 2.8 MiB |
BIN
assets/img/cloud/cloud-1.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
assets/img/cloud/cloud-2.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
assets/img/cloud/cloud-3.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
assets/img/cloud/cloud-4.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
assets/img/cloud/cloud-5.png
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
assets/img/cloud/efficient-1.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
assets/img/cloud/efficient-2.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
assets/img/cloud/efficient-3.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
assets/img/cloud/efficient-4.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
assets/img/cloud/组 7241@2x.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
assets/img/cloud/组 7242@2x.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
assets/img/cloud/组 7243@2x.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
assets/img/cloud/组 7244@2x.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
assets/img/cloud/组 7245@2x.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
assets/img/cloud/组 7246@2x.png
Normal file
|
After Width: | Height: | Size: 8.3 KiB |
1
assets/img/comment/close.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg t="1685522164135" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7357" width="200" height="200"><path d="M801.645714 170.666667l51.833905 51.590095L565.150476 511.951238l288.353524 289.670095-51.833905 51.614477-288.109714-289.450667L225.426286 853.23581 173.592381 801.621333l288.329143-289.670095L173.592381 222.256762 225.426286 170.666667l288.109714 289.426285L801.645714 170.666667z" p-id="7358"></path></svg>
|
||||
|
After Width: | Height: | Size: 464 B |
1
assets/img/comment/down.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg t="1685527652231" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7501" width="200" height="200"><path d="M512.146286 619.52L245.296762 352.792381 193.584762 404.48l318.585905 318.415238 318.268952-318.415238-51.736381-51.687619z" p-id="7502"></path></svg>
|
||||
|
After Width: | Height: | Size: 305 B |
6
assets/img/comment/shoppingCar.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg t="1679985724653" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="11210" width="20" height="20">
|
||||
<path d="M352.456912 832.032253c-35.434907 0-63.989249 28.554342-63.989249 63.989249 0 35.434907 28.554342 63.989249 63.989249 63.989249s63.989249-28.554342 63.989249-63.989249C416.446162 860.586595 387.891819 832.032253 352.456912 832.032253L352.456912 832.032253z" fill="#FF6739" p-id="11211"></path>
|
||||
<path d="M800.55367 832.032253c-35.434907 0-63.989249 28.554342-63.989249 63.989249 0 35.434907 28.554342 63.989249 63.989249 63.989249s63.989249-28.554342 63.989249-63.989249C864.54292 860.586595 835.816563 832.032253 800.55367 832.032253L800.55367 832.032253z" fill="#FF6739" p-id="11212"></path>
|
||||
<path d="M864.026877 800.037628 344.200235 800.037628c-46.099782 0-86.695112-36.466991-92.199563-83.082815l-54.356459-382.043339L166.853687 156.360826c-1.892155-15.653284-16.169326-28.382328-29.930455-28.382328L95.983874 127.978498c-17.717453 0-31.994625-14.277171-31.994625-31.994625s14.277171-31.994625 31.994625-31.994625l40.767344 0c46.615824 0 87.727196 36.466991 93.403662 83.082815l30.790526 177.86259L315.473879 708.698135c1.720141 14.793214 15.309256 27.350244 28.726356 27.350244l519.826642 0c17.717453 0 31.994625 14.277171 31.994625 31.994625S881.744331 800.037628 864.026877 800.037628z" fill="#FF6739" p-id="11213"></path>
|
||||
<path d="M384.279523 672.05913c-16.685369 0-30.618512-12.729044-31.82261-29.586427-1.376113-17.545439 11.868974-33.026709 29.586427-34.230808l434.163615-31.994625c15.997312-0.172014 29.414413-12.55703 31.134554-26.834201l50.400134-288.295649c1.204099-10.664875-1.720141-22.533848-8.084663-29.758441-4.128339-4.644381-9.288762-7.052579-15.309256-7.052579L319.946246 224.3064c-17.717453 0-31.994625-14.277171-31.994625-31.994625S302.400806 159.973123 319.946246 159.973123l554.05745 0c24.426004 0 46.959852 10.148833 63.301193 28.554342 18.749538 21.157736 27.178229 50.744163 23.565933 81.706703l-50.400134 288.467663c-5.504452 44.895683-45.927768 81.362674-92.027549 81.362674l-431.755417 31.82261C385.82765 671.887116 384.967579 672.05913 384.279523 672.05913z" fill="#FF6739" p-id="11214"></path>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
1
assets/img/comment/up.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg t="1685527707220" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7647" width="200" height="200"><path d="M512.146286 454.753524l-266.849524 266.727619L193.584762 669.744762l318.585905-318.415238 318.268952 318.415238-51.736381 51.687619z" p-id="7648"></path></svg>
|
||||
|
After Width: | Height: | Size: 314 B |
BIN
assets/img/contact/group-1.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
assets/img/contact/group-2.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
assets/img/contact/group-3.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
assets/img/contact/group-4.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
assets/img/contact/group-5.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
assets/img/contact/group-6.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
assets/img/dedicated/banner.png
Normal file
|
After Width: | Height: | Size: 2.7 MiB |
BIN
assets/img/dedicated/dedicated-1.png
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
assets/img/dedicated/dedicated-2.png
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
assets/img/dedicated/dedicated-3.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
assets/img/dedicated/dedicated-4.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
assets/img/dedicated/dedicated-5.png
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
assets/img/dedicated/efficient-1.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
assets/img/dedicated/efficient-2.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
assets/img/dedicated/efficient-3.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
assets/img/dedicated/grouo-1.png
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
BIN
assets/img/dedicated/grouo-2.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
assets/img/dedicated/grouo-3.png
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
assets/img/dedicated/grouo-4.png
Normal file
|
After Width: | Height: | Size: 8.2 KiB |
BIN
assets/img/document/banner.png
Normal file
|
After Width: | Height: | Size: 115 KiB |
1
assets/img/document/chevron-right-bottom.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.a{fill:none;}.b{fill:rgba(0,0,0,0.4);}</style></defs><g transform="translate(16) rotate(90)"><path class="a" d="M16,0V16H0V0Z" transform="translate(0 16) rotate(-90)"/><path class="b" d="M5,8,8.54,4.46,5,.919,5.919,0l4.46,4.46-4.46,4.46ZM0,8,3.541,4.46,0,.919.919,0l4.46,4.46L.919,8.919Z" transform="translate(2.96 3.54)"/></g></svg>
|
||||
|
After Width: | Height: | Size: 430 B |
1
assets/img/document/chevron-right-top.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.a{fill:none;}.b{fill:rgba(0,0,0,0.4);}</style></defs><g transform="translate(0 16) rotate(-90)"><path class="a" d="M16,16V0H0V16Z" transform="translate(16) rotate(90)"/><path class="b" d="M5,.919,8.54,4.46,5,8l.92.919,4.46-4.46L5.919,0Zm-5,0L3.541,4.46,0,8l.919.919,4.46-4.46L.919,0Z" transform="translate(2.96 3.541)"/></g></svg>
|
||||
|
After Width: | Height: | Size: 427 B |
BIN
assets/img/document/group-1.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/img/document/group-2.png
Normal file
|
After Width: | Height: | Size: 974 B |
BIN
assets/img/document/group-3.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
assets/img/document/group-4.png
Normal file
|
After Width: | Height: | Size: 923 B |
BIN
assets/img/document/group-5.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
assets/img/document/group-6.png
Normal file
|
After Width: | Height: | Size: 899 B |
1
assets/img/document/icon-bottom.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.a{fill:none;opacity:0.6;}.b{fill:rgba(0,0,0,0.4);}</style></defs><path class="a" d="M16,0V16H0V0Z"/><path class="b" d="M.919,0,4.46,3.54,8,0l.919.919L4.46,5.379,0,.919Z" transform="translate(3.54 5.54)"/></svg>
|
||||
|
After Width: | Height: | Size: 307 B |
1
assets/img/document/icon-search.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.a{fill:none;}.b{fill:rgba(0,0,0,0.4);}</style></defs><rect class="a" width="16" height="16"/><path class="b" d="M11.273,11.98h0L7.747,8.455a4.754,4.754,0,1,1,.707-.707l3.525,3.525-.707.707ZM4.756,1A3.756,3.756,0,1,0,8.512,4.756,3.761,3.761,0,0,0,4.756,1Z" transform="translate(2 2)"/></svg>
|
||||
|
After Width: | Height: | Size: 387 B |
1
assets/img/document/icon-top.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><defs><style>.a{fill:none;}.b{fill:rgba(0,0,0,0.9);}</style></defs><rect class="a" width="18" height="18"/><path class="b" d="M13.5,11.125H0V10H13.5v1.124Zm0-5.5H0V4.5H13.5V5.624Zm0-5.5H0V-1H13.5V.124Z" transform="translate(2.25 3.938)"/></svg>
|
||||
|
After Width: | Height: | Size: 327 B |
1
assets/img/document/view-list(1).svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><defs><style>.a{fill:none;}.b{fill:rgba(0,0,0,0.9);}</style></defs><g transform="translate(18) rotate(90)"><rect class="a" width="18" height="18"/><path class="b" d="M13.5,11.125H0V10H13.5v1.124Zm0-5.5H0V4.5H13.5V5.624Zm0-5.5H0V-1H13.5V.124Z" transform="translate(2.25 3.938)"/></g></svg>
|
||||
|
After Width: | Height: | Size: 371 B |
BIN
assets/img/domain/banner.png
Normal file
|
After Width: | Height: | Size: 195 KiB |
BIN
assets/img/domain/domain-1.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
assets/img/domain/domain-2.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
assets/img/domain/domain-3.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
assets/img/domain/domain-4.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
assets/img/domain/noTip.png
Normal file
|
After Width: | Height: | Size: 1007 B |
BIN
assets/img/domain/upload.png
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
assets/img/empty/empty_01.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
assets/img/empty/empty_02.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
assets/img/empty/empty_03.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
assets/img/empty/empty_04.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
assets/img/empty/empty_05.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
assets/img/empty/empty_06.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
assets/img/empty/empty_07.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
assets/img/empty/empty_08.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
assets/img/empty/empty_09.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
assets/img/empty/empty_10.png
Normal file
|
After Width: | Height: | Size: 15 KiB |