-
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
52 additions
and
118 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
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,6 +1,6 @@ | ||
| import { createApp } from 'vue' | ||
| import App from './App.vue' | ||
|
|
||
| import './assets/main.css' | ||
| import './style/index.less' | ||
|
|
||
| createApp(App).mount('#app') |
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
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,39 @@ | ||
| <script setup lang="ts"> | ||
| import { ref, reactive } from 'vue' | ||
| const mainIntroduce = ref('介绍主文案') | ||
| </script> | ||
| <template> | ||
| <div class="Page1"> | ||
| <section class="introduce-section"> | ||
| <div class="main-introduce" :data-word="mainIntroduce"></div> | ||
| <!-- <div class=""> | ||
| "一个魂儿"系A-SOUL女子偶像团体粉丝名 本app非商业用途,仅提供A-soul及相关社区服务 官方B站:《A-SOUL_Official》、抖音:《五个魂儿啊》 | ||
| </div> | ||
| <div class="to-download">前往下载</div> --> | ||
| </section> | ||
| </div> | ||
| </template> | ||
| <style scoped lang="less"> | ||
| .Page1 { | ||
| // border: 1px solid black; | ||
| width: 100%; | ||
| height: 100vh; | ||
| } | ||
| .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; | ||
| } | ||
| } | ||
| </style> |