Blinking animation for all browsers using jQuery

Blinking animation i mean like text should be fade in and fade out with endless loop.  I want this effect for both text and images

Kid Asked on December 14, 2015 in Jquery.
Add Comment
  • 1 Answer(s)

      JAVASCRIPT

      $(function() {
      blinkeffect('#blink_id');
      })

      function blinkeffect(selector) {
      $(selector).fadeOut('slow', function() {
      $(this).fadeIn('slow', function() {
      blinkeffect(this);
      });
      });
      }

      HTML CONTENT


      <a id="#blink_id"></a>

      If you give id attribute to any div or image or any html element it will blink automatically.

      Kid Answered on December 14, 2015.
      Add Comment

      Your Answer

      By posting your answer, you agree to the privacy policy and terms of service.