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.

56 lines
1.4 KiB

5 years ago
<template>
5 years ago
<div class="official-container">
5 years ago
<div class="header-container">
5 years ago
<div class="background" />
<img src="@/assets/images/official/TDUCK@2x.png">
<div>
<span>首页</span>
<span>开源项目</span>
<span>开发文档</span>
<span>付费服务</span>
<span>加入社群</span>
</div>
<div>
<span>登录</span>
</div>
5 years ago
</div>
5 years ago
</div>
</template>
5 years ago
<script>
5 years ago
export default {
5 years ago
name: 'Official'
5 years ago
}
</script>
5 years ago
<style lang="scss" scoped>
5 years ago
.official-container {
5 years ago
min-width: 960px;
5 years ago
height: 100%;
5 years ago
background-size: contain;
5 years ago
}
5 years ago
.header-container {
position: relative;
5 years ago
height: 500px;
width: 100%;
background: url(~@/assets/images/official/heade-background.png);
background-size: percentage;
//transform: rotate(337deg);
//background: linear-gradient(90deg, #2054f1, #224ef3, #38eaff);
//border-radius: 0 5px 5px 267px;
//background-size: cover;
5 years ago
}
5 years ago
.background {
5 years ago
//position: absolute;
//bottom: -375px;
//width: 1920px;
//height: 847px;
//height: 500px;
//width: 100%;
//transform: rotate(337deg);
//background: linear-gradient(90deg, #2054f1, #224ef3, #38eaff);
//border-radius: 0 5px 5px 267px;
//background-size: cover;
5 years ago
}
</style>