(function($)
{
$.fn.blink = function(options)
{
var defaults = { delay:5000 };
var options = $.extend(defaults, options);
return this.each(function()
{
var obj = $(this).find("img");
setInterval(function()
{
if($(obj).css("display") == "block")
{
$(obj).fadeOut('slow');
}
else
{
$(obj).fadeIn('slow');
}
}, options.delay);
});
}
}(jQuery))
$('.blink').blink();
HTML:
<a href="#" class="blink">
<img src="image.png" alt="some image" />
</a>
This script removes image with transition effect, and then shows it back. So here are two steps: 1) hide, 2) show.
There is 5 seconds delay on each step, it should be only when image is visible.
How do I remove delay from the hide step? There should not by any delay when image is unvisible.
Code is available on JsFiddle
Its a circle script, once fadeIn/Out is done, it should be started again.
Thanks.