|
@@ -23,7 +23,10 @@ const toPage = (url:string) => {
|
|
|
<img class="left" v-show="sunStore.sun" src="../assets/home/header.svg" alt="header">
|
|
|
</div>
|
|
|
<div class="right">
|
|
|
- <img class="right" src="../assets/home/flower-white.svg" alt="flower">
|
|
|
+ <video v-show="!sunStore.sun" autoplay="autoplay" playsinline="playsinline" muted="muted" width="640" height="640" src="../media/0727(7).mp4">
|
|
|
+ </video>
|
|
|
+ <video v-show="sunStore.sun" autoplay="autoplay" playsinline="playsinline" muted="muted" width="640" height="640" src="../media/0727(12).mp4">
|
|
|
+ </video>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="airdrop">
|
|
@@ -284,6 +287,7 @@ const toPage = (url:string) => {
|
|
|
position: absolute;
|
|
|
top: 0;
|
|
|
z-index: -1;
|
|
|
+ display: none;
|
|
|
}
|
|
|
|
|
|
.header {
|
|
@@ -298,8 +302,10 @@ const toPage = (url:string) => {
|
|
|
}
|
|
|
|
|
|
.right {
|
|
|
- user-select: none;
|
|
|
- -webkit-user-drag: none;
|
|
|
+ //user-select: none;
|
|
|
+ //-webkit-user-drag: none;
|
|
|
+ //width: 320px;
|
|
|
+ //height: 180px;
|
|
|
}
|
|
|
}
|
|
|
|