How to Blink a text line through HTML and Javascript.
How to blink a text line through HTML and Javascript.
html
Javascript
- asked 6 years ago
- Priyanka Roy
1Answer
There are text blinking function you can use it and blink your text line.
HTML Code:
<font class="blinking">Your Text Line Blink Here</font>
Javascript Code:
<script>
function blinker() {
$('.blinking').fadeOut(500);
$('.blinking').fadeIn(500);
}
setInterval(blinker, 1000);
</script>
- answered 6 years ago
- Community wiki
Your Answer