I'm trying to achieve a visually appealing effect with this countdown. The goal is to have it count into negative numbers, at which point a skull and crossbones image should become visible and start flashing. To do this, I am utilizing JavaScript functionality...
var img = document.getElementById('Image1');
var interval = window.setInterval(function() {
if (img.display == 'hidden'){
img.style.visibility = 'visible';
} else {
img.style.visibility = 'hidden';
}
}, 1000);
Once the flashing effect is in place, what is the best way to make sure it overlaps the countdown span
?
http://jsfiddle.net/2Lufxs2t/3/