-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
55 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,39 +1,43 @@ | ||
| <script setup lang="ts"> | ||
| import { ref, reactive } from 'vue' | ||
| const mainIntroduce = ref('介绍主文案') | ||
| const mainIntroduce = ref('E个魂的APP') | ||
| </script> | ||
| <template> | ||
| <div class="Page1"> | ||
| <div class="mask"></div> | ||
| <section class="introduce-section"> | ||
| <div class="main-introduce" :data-word="mainIntroduce"></div> | ||
| <!-- <div class=""> | ||
| <div class="main-introduce">eoefans App</div> | ||
| <div class="sub-introduce"> | ||
| "一个魂儿"系A-SOUL女子偶像团体粉丝名 本app非商业用途,仅提供A-soul及相关社区服务 官方B站:《A-SOUL_Official》、抖音:《五个魂儿啊》 | ||
| </div> | ||
| <div class="to-download">前往下载</div> --> | ||
| <!-- TODO: 左边搞些介绍 随动? --> | ||
| <!-- TODO:搞个圆形的轮播图下载在右边 --> | ||
| <div class="to-download">前往下载</div> | ||
| </section> | ||
| </div> | ||
| </template> | ||
| <style scoped lang="less"> | ||
| .Page1 { | ||
| // border: 1px solid black; | ||
| position: relative; | ||
| width: 100%; | ||
| height: 100vh; | ||
| background-image: url('../../assets/img/home-bg.jpg'); | ||
| background-size: cover; | ||
| .mask { | ||
| position: absolute; | ||
| width: 100%; | ||
| height: 100%; | ||
| background-color: rgba(0, 0, 0, 0.4); | ||
| } | ||
| } | ||
| .main-introduce { | ||
| position: relative; | ||
| font-size: 30px; | ||
| &::before { | ||
| content: attr(data-word); | ||
| position: absolute; | ||
| top: 0; | ||
| left: 0; | ||
| } | ||
| &::after { | ||
| content: attr(data-word); | ||
| position: absolute; | ||
| top: 0; | ||
| left: -3px; | ||
| } | ||
| font-size: 90px; | ||
| color: #fff; | ||
| } | ||
| .sub-introduce { | ||
| font-size: 20px; | ||
| color: #74727a; | ||
| } | ||
| </style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| <script setup lang="ts"> | ||
| import { ref, reactive } from 'vue' | ||
| </script> | ||
| <template> | ||
| <div class="Page2"> | ||
| <header> 特色功能</header> | ||
|
|
||
| </div> | ||
| </template> | ||
| <style scoped lang="less"> | ||
| .Page2{ | ||
| } | ||
| </style> |