layui/example/src/view/index.vue

274 lines
6.5 KiB
Vue
Raw Normal View History

2021-10-22 01:18:40 +00:00
<template>
2022-03-09 07:17:02 +00:00
<div class="site-container">
2021-10-22 01:18:40 +00:00
<div class="site-banner">
<div class="site-banner-main">
2021-10-22 07:37:22 +00:00
<div class="site-zfj site-zfj-anim">
<img
2022-03-29 23:44:37 +00:00
src="../assets/logo-png.png"
style="width: 220px; border-radius: 10px"
/>
2021-10-22 07:37:22 +00:00
</div>
<div class="layui-anim site-desc site-desc-anim">
2021-10-22 09:50:59 +00:00
<p class="web-font-desc">layui - vue</p>
<cite
2022-03-09 03:22:25 +00:00
>{{ t('home.description') }}</cite
>
2021-10-22 07:37:22 +00:00
</div>
2021-10-22 01:18:40 +00:00
<div class="site-download">
<router-link class="layui-inline site-down" to="/zh-CN/guide"
2021-10-22 09:50:59 +00:00
>Get Started</router-link
2021-10-22 07:37:22 +00:00
>
</div>
<div class="site-version">
2022-03-30 10:35:34 +00:00
<span>{{ t('home.version') }}<cite class="site-showv">1.0.0</cite></span>
<span>{{ t('home.download') }}<em class="site-showdowns">5463</em></span>
2021-10-22 01:18:40 +00:00
</div>
</div>
2021-10-22 07:37:22 +00:00
<div class="site-banner-other">
<a
2021-10-22 09:50:59 +00:00
href="https://gitee.com/layui-vue"
2021-10-22 07:37:22 +00:00
target="_blank"
rel="nofollow"
class="site-star"
>
2022-03-18 06:48:38 +00:00
<i class="layui-icon"></i> Star <cite id="getStars">716</cite>
2021-10-22 07:37:22 +00:00
</a>
<a
2021-10-22 09:50:59 +00:00
href="https://gitee.com/layui-vue"
2021-10-22 07:37:22 +00:00
target="_blank"
rel="nofollow"
class="site-fork"
>
Gitee
</a>
<a
href="https://github.com/layui-vue"
target="_blank"
rel="nofollow"
class="site-fork"
>
Github
</a>
2021-10-22 07:37:22 +00:00
</div>
2021-10-22 01:18:40 +00:00
</div>
2022-03-30 10:35:34 +00:00
<div style="margin-left: 10%; margin-right: 10%;margin-top:40px;">
2021-10-22 07:37:22 +00:00
<div>
<ul class="layui-row layui-col-space30 site-idea">
2021-11-16 05:52:54 +00:00
<li class="layui-col-md8">
2021-10-22 07:37:22 +00:00
<div>
<fieldset class="layui-elem-field layui-field-title">
<legend>返璞归真</legend>
<p>
身处在前端社区的繁荣之下我们都在有意或无意地追逐 layui
偏偏回望当初奔赴在返璞归真的漫漫征途自信并勇敢着追寻于原生态的书写指令试图以最简单的方式诠释高效
</p>
</fieldset>
</div>
</li>
2021-11-16 05:52:54 +00:00
<li class="layui-col-md8">
2021-10-22 07:37:22 +00:00
<div>
<fieldset class="layui-elem-field layui-field-title">
<legend>双面体验</legend>
<p>
拥有双面的不仅是人生还有
layui一面极简一面丰盈极简是视觉所见的外在是开发所念的简易丰盈是倾情雕琢的内在是信手拈来的承诺一切本应如此简而全双重体验
</p>
</fieldset>
</div>
</li>
2021-11-16 05:52:54 +00:00
<li class="layui-col-md8">
2021-10-22 07:37:22 +00:00
<div>
<fieldset class="layui-elem-field layui-field-title">
<legend>星辰大海</legend>
<p>
如果眼下还是一团零星之火那运筹帷幄之后迎面东风就是一场烈焰燎原吧那必定会是一番尽情的燃烧秋风萧瑟时散作满天星辰你看那四季轮回<!--海天相接-->正是
layui 不灭的执念
</p>
</fieldset>
</div>
</li>
</ul>
</div>
2021-10-22 01:18:40 +00:00
</div>
2021-10-22 09:50:59 +00:00
<div class="footer footer-index">
<p>
2022-03-30 10:35:34 +00:00
Released under the <a href="/index.html">MIT License</a>.
</p>
<p>
Copyright © 2021-2022 layui-vue.com
2021-10-22 09:50:59 +00:00
</p>
</div>
2021-10-22 07:37:22 +00:00
</div>
2021-10-22 01:18:40 +00:00
</template>
2022-03-09 03:22:25 +00:00
<script>
import { useI18n } from 'vue-i18n';
export default {
name: "index",
setup() {
const { t } = useI18n();
return {
t
}
}
}
</script>
2021-10-22 01:18:40 +00:00
<style>
2022-03-29 23:44:37 +00:00
#app,
html,
body {
height: 100%;
}
.site-container {
2022-03-29 23:44:37 +00:00
background: #fff;
margin-top: 60px;
height: 100%;
width: 100%;
}
2021-10-22 01:18:40 +00:00
.site-banner {
2022-03-29 23:44:37 +00:00
height: 100%;
2021-10-22 01:18:40 +00:00
overflow: hidden;
2022-03-30 10:35:34 +00:00
text-align: center;
position: relative;
border-bottom: 1px solid #eee;
2022-03-29 23:44:37 +00:00
background-image: url(../assets/background.svg);
background-repeat: no-repeat;
2022-03-30 10:35:34 +00:00
background-size: 100%;
2021-10-22 01:18:40 +00:00
}
.site-banner-bg {
background-position: center 0;
}
2022-03-30 10:35:34 +00:00
2021-10-22 01:18:40 +00:00
.site-banner-bg,
.site-banner-main {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.site-download {
2021-10-23 07:54:37 +00:00
margin-top: 72px;
2021-10-22 01:18:40 +00:00
font-size: 0;
}
.site-download a {
position: relative;
2021-10-22 07:37:22 +00:00
padding: 0 50px 0 50px;
height: 60px;
line-height: 60px;
border-radius: 4px;
2022-03-29 23:44:37 +00:00
border: 1px solid rgba(60, 60, 60, .7);
2021-10-22 01:18:40 +00:00
font-size: 24px;
2022-03-29 23:44:37 +00:00
color: rgba(60, 60, 60, .7);
2021-10-22 01:18:40 +00:00
transition: all 0.5s;
-webkit-transition: all 0.5s;
}
.site-download a:hover {
2022-03-29 23:44:37 +00:00
background-color: rgba(255, 255, 255, 0.1);
2021-10-22 01:18:40 +00:00
border-radius: 50px;
}
2021-10-22 07:37:22 +00:00
.site-zfj {
padding-top: 25px;
height: 220px;
}
.site-zfj-anim i {
-webkit-animation-name: site-zfj;
animation-name: site-zfj;
-webkit-animation-duration: 5s;
animation-duration: 5s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
.site-zfj i {
position: absolute;
left: 50%;
top: 50px;
width: 200px;
height: 200px;
margin-left: -100px;
font-size: 180px;
color: #c2c2c2;
}
.site-desc-anim {
-webkit-animation-name: site-desc;
animation-name: site-desc;
}
.site-desc {
position: relative;
height: 70px;
margin-top: 20px;
}
.site-desc .web-font-desc {
color: #fff;
2022-03-30 10:35:34 +00:00
color: #213547;
font-size: 52px;
opacity: 0.9;
2021-10-22 07:37:22 +00:00
}
.web-font-desc {
2022-03-30 10:35:34 +00:00
font-size: 76px;
line-height: 1.25;
font-weight: 900;
letter-spacing: -1.5px;
max-width: 960px;
margin: 0 auto;
2021-10-22 07:37:22 +00:00
}
.site-desc cite {
position: absolute;
bottom: -40px;
left: 0;
width: 100%;
2022-03-29 23:44:37 +00:00
color: rgba(60, 60, 60, .7);
2021-10-22 07:37:22 +00:00
font-style: normal;
}
.site-version {
position: relative;
margin-top: 18px;
2022-03-29 23:44:37 +00:00
color: rgba(60, 60, 60, .7);
2021-10-22 07:37:22 +00:00
font-size: 12px;
}
.site-version span {
padding: 0 3px;
}
.site-version * {
font-style: normal;
}
.site-version a {
2022-03-29 23:44:37 +00:00
color: rgba(60, 60, 60, .7);
2021-10-22 07:37:22 +00:00
text-decoration: none;
margin-top: -4px;
}
.site-banner-other {
position: absolute;
left: 0;
2022-03-30 10:35:34 +00:00
bottom: 90px;
2021-10-22 07:37:22 +00:00
width: 100%;
text-align: center;
font-size: 0;
}
.site-banner-other a {
display: inline-block;
vertical-align: middle;
height: 28px;
line-height: 28px;
margin: 0 6px;
padding: 0 8px;
border-radius: 4px;
2022-03-29 23:44:37 +00:00
color: rgba(60, 60, 60, .7);
border: 1px solid rgba(60, 60, 60, .7);
2021-10-22 07:37:22 +00:00
font-size: 14px;
transition: all 0.5s;
-webkit-transition: all 0.5s;
}
2021-10-22 09:50:59 +00:00
.footer {
2021-10-22 09:52:43 +00:00
width: 100%;
padding: 30px 15px;
line-height: 30px;
text-align: center;
2022-03-30 10:35:34 +00:00
color: rgba(60, 60, 60, .7);
2021-10-22 09:52:43 +00:00
font-weight: 300;
2022-03-30 10:35:34 +00:00
font-size: 13.6px;
background: #f9f9f9;
2021-10-22 09:52:43 +00:00
}
</style>