You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
961 B
36 lines
961 B
10 years ago
|
{% extends "layout.html" %}
|
||
10 years ago
|
|
||
10 years ago
|
{% block bodyAttribute %}class="index-page"{% endblock %}
|
||
|
|
||
10 years ago
|
{% block content %}
|
||
|
<div class="main-box" id="main">
|
||
|
<div class="banner-box">
|
||
|
<div id="bannerAnim"></div>
|
||
|
<div class="banner-img fn-alpha-out"></div>
|
||
|
<div class="banner-entry fn-hide">
|
||
|
<div class="entry-title">Ant</div>
|
||
|
<div class="entry-title">Design</div>
|
||
|
<div class="entry-slogan">
|
||
|
{{ config.site.description }}
|
||
|
</div>
|
||
10 years ago
|
<a class="entry-link" href="/docs/introduce">
|
||
10 years ago
|
<i class="iconfont-home icon-lego"></i>
|
||
|
开始使用
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script src="/static/homeLoad.js"></script>
|
||
|
<style>
|
||
|
.main-wrapper {
|
||
|
overflow: hidden;
|
||
|
position: relative;
|
||
|
height: calc(100% - 190px);
|
||
|
min-height: 500px;
|
||
10 years ago
|
background: #fff;
|
||
10 years ago
|
transform-style: preserve-3d;
|
||
|
transition: transform .6s cubic-bezier(0.785, 0.135, 0.15, 0.86), height .5s ease-out;
|
||
|
}
|
||
|
</style>
|
||
|
{% endblock %}
|