Skip to content

Commit 35b358f

Browse files
committed
.
1 parent a6a909f commit 35b358f

File tree

4 files changed

+5
-43
lines changed

4 files changed

+5
-43
lines changed

scripts/fb_alwayEnableAnimation.css

Lines changed: 0 additions & 8 deletions
This file was deleted.

scripts/fb_alwayEnableAnimation.js

Lines changed: 0 additions & 32 deletions
This file was deleted.

scripts/fb_moreReactionStory.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,12 @@
125125

126126
@keyframes bubble {
127127
0% {
128-
transform: translateY(0px) scale(2);
128+
transform: translateY(0px) scale(0);
129129
opacity: 1;
130130
}
131-
131+
30% {
132+
transform: translateY(-30px) scale(2);
133+
}
132134
100% {
133135
transform: translateY(-200px) scale(1);
134136
opacity: 0.1;

scripts/fb_moreReactionStory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default {
8181
const emojiList = EMOJI_LIST[key].split(" ");
8282
emojiList.forEach((emoji) => {
8383
const emojiLi = document.createElement("li");
84-
emojiLi.className = "emoji";
84+
emojiLi.className = "emoji always-enable-animations";
8585
emojiLi.textContent = emoji;
8686
emojiLi.setAttribute("value", emoji);
8787
emojiLi.onclick = async function () {

0 commit comments

Comments
 (0)