+ 1
Have <blink> attribute in html ?
I think there had an attribute <blink> in html to make blink the texts... It still have in html5?
5 odpowiedzi
+ 3
<span class="blink">blink</span>
<style>
.blink {
-webkit-animation:blink 1s ease-in-out infinite;
animation:blink 1s ease-in-out infinite;
}
@-webkit-keyframes blink {
from { opacity:1; }
50% { opacity:0; }
to { opacity:1; }
}
@keyframes blink {
from { opacity:1; }
50% { opacity:0; }
to { opacity:1; }
}
</style>
+ 2
Blink was removed from html 5 because it's outdated. You can find alternatives and workarounds with javaScript and CSS... But why would you want to 🐿️
+ 1
i think its the job of CSS3 or CSS or jQuery?.
0
Sanwar
0
help