the nonstandard idea, <blink>yo</blink> is not a legal HTML tag, clearly the standards people there have F- in web development, what else is new
the goal on my site was to make the search menu item blink to call attention to it more easily
thoughts and suggestions?
JavaScript probably can get it done?
blinking text
Moderator: General Moderators
blinking text
Hardcore Games™ Legendary is the Only Way to Play™
My site is powered by LAMP
My site is powered by LAMP
- Christopher
- Site Administrator
- Posts: 13596
- Joined: Wed Aug 25, 2004 7:54 pm
- Location: New York, NY, US
Re: blinking text
Probably one of the best decisions they ever made. The internet is a far better place without blinking text.Vegan wrote:the nonstandard idea, <blink>yo</blink> is not a legal HTML tag, clearly the standards people there have F- in web development, what else is new
Or just please don'tVegan wrote:the goal on my site was to make the search menu item blink to call attention to it more easily
Yes, Javascript with an interval timer. Or for CSS3 I found this:Vegan wrote:JavaScript probably can get it done?
Code: Select all
<style>
.blink {
animation: blink 1s steps(5, start) infinite;
-webkit-animation: blink 1s steps(5, start) infinite;
}
@keyframes blink {
to {
visibility: hidden;
}
}
@-webkit-keyframes blink {
to {
visibility: hidden;
}
}
</style>
This is <span class="blink">blinking</span> text.(#10850)
Re: blinking text
thanks, i wanted to call attention to the seach feature of my site, the site was designed for google not manual use
Hardcore Games™ Legendary is the Only Way to Play™
My site is powered by LAMP
My site is powered by LAMP