generated at
なにそれ
なんだよ、それは
なんだそれ
なんじゃこりゃ
なんですと
なにそれ
なにこれ



ns1.svg
<svg width="400" height="100" viewBox="0 0 400 100" xmlns="http://www.w3.org/2000/svg"> <text x="10" y="90" font-size="90" fill="white" stroke="black" stroke-width="4" font-weight="800" letter-spacing="10" word-spacing="10" > なにそれ </text> </svg>

ns013.svg
<svg width="400" height="100" viewBox="0 0 400 100" xmlns="http://www.w3.org/2000/svg"> <style type="text/css"> #tx01{ font-weight:800; fill: white; stroke: black; stroke-width:4; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray: 600; stroke-dashoffset: 600; animation: textAnime 5s linear infinite; } /* @media (prefers-color-scheme: light) { /* */ @media (prefers-color-scheme: dark) { /* */ #tx01{ fill:black; stroke:white; } } @keyframes textAnime { 0% { stroke-dashoffset: 600; } 50% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; } } </style> <text id="tx01" x="10" y="90" font-size="90" letter-spacing="10" word-spacing="10" > なにそれ </text> </svg>

nss20.svg
<svg width="200" height="100" viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg"> <style type="text/css"> #tx01{ font-weight:800; fill: white; stroke: black; stroke-width:4; stroke-linecap:round; stroke-linejoin:round; animation: scrollAnime 5s linear infinite; } /* @media (prefers-color-scheme: light) { /* */ @media (prefers-color-scheme: dark) { /* */ #tx01{ fill:black; stroke:white; } } @keyframes scrollAnime{ 0% { transform: translateX(100%)} 100% { transform: translateX(-220%)} } </style> <text id="tx01" x="10" y="90" font-size="90" letter-spacing="10" word-spacing="10" > なにそれ </text> </svg>


g004.svg
<svg width="400" height="100" viewBox="0 0 400 100" xmlns="http://www.w3.org/2000/svg"> <linearGradient id="s1" x1="0%" y1="100%" x2="0%" y2="0%" gradientUnits="userSpaceOnUse" spreadMethod="repeat"> <stop offset="0%" stop-color="#d2d2d2" /> <stop offset="25%" stop-color="#f0f0f0"/> <stop offset="75%" stop-color="#aaaaaa" /> <stop offset="100%" stop-color="#fafafa"/> </linearGradient> <text x="10" y="90" font-size="90" fill="url(#s1)" stroke="black" stroke-width="4" font-weight="900" letter-spacing="10" word-spacing="10" > なにそれ </text> </svg>