빨간색 느낌표 애니메이션은 Google Noto Emoji Animation 세트의 일부입니다. 벡터 Lottie 형식이라 어떤 크기에서도 깔끔하게 렌더링되며 100 KB 미만으로 유지됩니다. Unicode 코드포인트: U+2757.
이 Lottie는 ❗와 동일한 의미를 담습니다: Symbols entry: Red exclamation mark. 애니메이션은 그 순간을 더 강하게 전달할 뿐입니다.
DBEmoji
Symbols entry: Red exclamation mark.
빨간색 느낌표 애니메이션은 Google Noto Emoji Animation 세트의 일부입니다. 벡터 Lottie 형식이라 어떤 크기에서도 깔끔하게 렌더링되며 100 KB 미만으로 유지됩니다. Unicode 코드포인트: U+2757.
이 Lottie는 ❗와 동일한 의미를 담습니다: Symbols entry: Red exclamation mark. 애니메이션은 그 순간을 더 강하게 전달할 뿐입니다.
스택에 맞는 스니펫을 고르세요. 모든 스니펫은 Google CDN의 동일한 Lottie JSON을 가리키므로 별도 호스팅이 필요 없습니다.
https://fonts.gstatic.com/s/e/notoemoji/latest/2757/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/2757/lottie.json"
background="transparent"
speed="1"
style="width: 160px; height: 160px"
loop
autoplay>
</lottie-player><div id="lottie-red-exclamation-mark-2757" 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-red-exclamation-mark-2757"),
renderer: "svg",
loop: true,
autoplay: true,
path: "https://fonts.gstatic.com/s/e/notoemoji/latest/2757/lottie.json"
});
</script>import Lottie from "lottie-react";
import { useEffect, useState } from "react";
export function RedExclamationMark2757() {
const [data, setData] = useState<unknown>(null);
useEffect(() => {
fetch("https://fonts.gstatic.com/s/e/notoemoji/latest/2757/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에서 호스팅합니다.