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
Add Comment
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.