6 ms·
<BLINK> <MARQUEE> <OL> <LI>One</LI> <LI>Two</LI> <LI>Three</LI> </OL> </MARQUEE> </BLINK> FTFY
by recroad 4mo ago
<BLINK>
<MARQUEE>
<OL>
<LI>One</LI>
<LI>Two</LI>
<LI>Three</LI>
</OL>
</MARQUEE>
</BLINK>
FTFY
- reconnecting 4mo ago<MARK>FTFY</MARK>
- Trufa 4mo agoblink wont work, but marquee will
- wwweston 4mo agoNot with that attitude: <style> @keyframes blink { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } } blink { animation: blink 0.7s infinite; } </style> <blink>This guy blinks.</blink>
- Trufa 4mo agopeople who use css are not welcome here.
- Ancapistani 4mo agoIt’s OK if it’s a polyfill. Wait, not far enough back… It’s OK if it’s a shim.
- reconnecting 4mo agoWhat version of Macromedia Dreamweaver did you use to make this?
- panzi 4mo agoWasn't it more like this? <style> @keyframes blink { 0% { visibility: visible; } 50% { visibility: hidden; } 100% { visibility: visible; } } blink { animation: blink 0.7s steps(1, end) infinite; } </style> <blink>This guy blinks.</blink>
- reconnecting 4mo agoSince <BLINK> is gone, `BEHAVIOR=SLIDE` is the closest you'll get. <MARQUEE DIRECTION="DOWN" BEHAVIOR="SLIDE">Slide</MARQUEE>