• support@answerspoint.com

How to Blink a text line through HTML and Javascript.

2322

How to blink a text line through HTML and Javascript.

1Answer


0

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

    Facebook Share        
       
  • asked 6 years ago
  • viewed 2322 times
  • active 6 years ago

Best Rated Questions