🗑 是 垃圾桶 表情的动态版本。Google 设计这段循环动画的目标是传达与静态字形相同的语义,但带上表情或动作里本应有的节奏。
动画放大了 物品 分类的静态字形仅暗示的那个瞬间 — 笑容变宽,物体回应,动作完成。适用于动效能增加清晰度而非噪点的场景。
DBEmoji
垃圾桶(🗑),归属物品。
🗑 是 垃圾桶 表情的动态版本。Google 设计这段循环动画的目标是传达与静态字形相同的语义,但带上表情或动作里本应有的节奏。
动画放大了 物品 分类的静态字形仅暗示的那个瞬间 — 笑容变宽,物体回应,动作完成。适用于动效能增加清晰度而非噪点的场景。
选择匹配技术栈的代码片段。所有片段都指向 Google CDN 上同一份 Lottie JSON,无需自托管资源。
https://fonts.gstatic.com/s/e/notoemoji/latest/1f5d1_fe0f/lottie.json<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<lottie-player
src="https://fonts.gstatic.com/s/e/notoemoji/latest/1f5d1_fe0f/lottie.json"
background="transparent"
speed="1"
style="width: 160px; height: 160px"
loop
autoplay>
</lottie-player><div id="lottie-wastebasket-1f5d1" style="width:160px;height:160px"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.12.2/lottie.min.js"></script>
<script>
lottie.loadAnimation({
container: document.getElementById("lottie-wastebasket-1f5d1"),
renderer: "svg",
loop: true,
autoplay: true,
path: "https://fonts.gstatic.com/s/e/notoemoji/latest/1f5d1_fe0f/lottie.json"
});
</script>import Lottie from "lottie-react";
import { useEffect, useState } from "react";
export function Wastebasket1f5d1() {
const [data, setData] = useState<unknown>(null);
useEffect(() => {
fetch("https://fonts.gstatic.com/s/e/notoemoji/latest/1f5d1_fe0f/lottie.json").then((r) => r.json()).then(setData);
}, []);
if (!data) return null;
return (
<Lottie
animationData={data}
loop
autoplay
style={{ width: 160, height: 160 }}
/>
);
}prefers-reduced-motion。暂停自动播放,回退到 Unicode 字符 🗑 或静态 Noto PNG。动画来源:Google Noto Emoji Animation(Apache License 2.0)。由 Google 在 fonts.gstatic.com 托管。