접시저울 애니메이션은 Google Noto Emoji Animation 세트의 일부입니다. 벡터 Lottie 형식이라 어떤 크기에서도 깔끔하게 렌더링되며 100 KB 미만으로 유지됩니다. Unicode 코드포인트: U+2696.
이 Lottie는 ⚖와 동일한 의미를 담습니다: An objects emoji called Balance scale. 애니메이션은 그 순간을 더 강하게 전달할 뿐입니다.
DBEmoji
An objects emoji called Balance scale.
접시저울 애니메이션은 Google Noto Emoji Animation 세트의 일부입니다. 벡터 Lottie 형식이라 어떤 크기에서도 깔끔하게 렌더링되며 100 KB 미만으로 유지됩니다. Unicode 코드포인트: U+2696.
이 Lottie는 ⚖와 동일한 의미를 담습니다: An objects emoji called Balance scale. 애니메이션은 그 순간을 더 강하게 전달할 뿐입니다.
스택에 맞는 스니펫을 고르세요. 모든 스니펫은 Google CDN의 동일한 Lottie JSON을 가리키므로 별도 호스팅이 필요 없습니다.
https://fonts.gstatic.com/s/e/notoemoji/latest/2696_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/2696_fe0f/lottie.json"
background="transparent"
speed="1"
style="width: 160px; height: 160px"
loop
autoplay>
</lottie-player><div id="lottie-balance-scale-2696" 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-balance-scale-2696"),
renderer: "svg",
loop: true,
autoplay: true,
path: "https://fonts.gstatic.com/s/e/notoemoji/latest/2696_fe0f/lottie.json"
});
</script>import Lottie from "lottie-react";
import { useEffect, useState } from "react";
export function BalanceScale2696() {
const [data, setData] = useState<unknown>(null);
useEffect(() => {
fetch("https://fonts.gstatic.com/s/e/notoemoji/latest/2696_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을 존중하세요. autoplay를 멈추고 Unicode 문자 ⚖ 또는 정적 Noto PNG로 폴백합니다.애니메이션 출처: Google Noto Emoji Animation (Apache License 2.0). Google이 fonts.gstatic.com에서 호스팅합니다.