This commit is contained in:
こけっち 2022-04-01 03:39:17 +09:00
parent ad74fbc48f
commit af0dfb2362
No known key found for this signature in database
GPG Key ID: 21460619C5FC4DD1
6 changed files with 68 additions and 26 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "misskey", "name": "misskey",
"version": "12.108.1-simkey-v99999", "version": "12.108.1-simkey-v999999",
"codename": "indigo", "codename": "indigo",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -1,5 +1,5 @@
<template> <template>
<MfmCore text="別れました" :plain="plain" :nowrap="nowrap" :author="author" :customEmojis="customEmojis" :isNote="isNote" class="havbbuyv" :class="{ nowrap }"/> <MfmCore :text="text" :plain="plain" :nowrap="nowrap" :author="author" :customEmojis="customEmojis" :isNote="isNote" class="havbbuyv" :class="{ nowrap }"/>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>

View File

@ -350,4 +350,26 @@ export default defineComponent({
animation-iteration-count: infinite; animation-iteration-count: infinite;
animation-timing-function: ease; animation-timing-function: ease;
} }
//2022-wtf
._button:hover {
animation-name: wtf;
animation-fill-mode: forwards;
animation-duration: 0.5s;
animation-timing-function: ease;
animation-iteration-count: infinite;
}
@keyframes wtf {
0% {
transform: scale(1, 1) translate(0px);
}
10% {
transform: scale(0, 0) translate(2px);
}
100% {
transform: scale(1, 1) translate(900px);
}
}
</style> </style>

View File

@ -266,4 +266,26 @@ export default defineComponent({
animation-iteration-count: infinite; animation-iteration-count: infinite;
animation-timing-function: ease; animation-timing-function: ease;
} }
//2022-wtf
._button:hover {
animation-name: wtf;
animation-fill-mode: forwards;
animation-duration: 0.5s;
animation-timing-function: ease;
animation-iteration-count: infinite;
}
@keyframes wtf {
0% {
transform: scale(1, 1) translate(0px);
}
10% {
transform: scale(0, 0) translate(2px);
}
100% {
transform: scale(1, 1) translate(900px);
}
}
</style> </style>

View File

@ -335,4 +335,26 @@ export default defineComponent({
animation-iteration-count: infinite; animation-iteration-count: infinite;
animation-timing-function: ease; animation-timing-function: ease;
} }
//2022-wtf
._button:hover {
animation-name: wtf;
animation-fill-mode: forwards;
animation-duration: 0.5s;
animation-timing-function: ease;
animation-iteration-count: infinite;
}
@keyframes wtf {
0% {
transform: scale(1, 1) translate(0px);
}
10% {
transform: scale(0, 0) translate(2px);
}
100% {
transform: scale(1, 1) translate(900px);
}
}
</style> </style>

View File

@ -563,27 +563,3 @@ hr {
transform: scaleX(1.00) scaleY(1.00) ; transform: scaleX(1.00) scaleY(1.00) ;
} }
} }
//2022-wtf
.inner {
filter: brightness(0) !important;
background: #000 !important;
}
._button:hover {
animation-name: wtf;
animation-fill-mode: forwards;
animation-duration: 0.5s;
animation-timing-function: ease;
animation-iteration-count: infinite;
}
@keyframes wtf {
0% {
transform: scale(1, 1) translate(0px);
}
10% {
transform: scale(0, 0) translate(2px);
}
100% {
transform: scale(1, 1) translate(900px);
}
}