Blinking Text On Webpage Html Code
<script type="text/javascript" >
function blink(selector){
$(selector).animate({opacity:0}, 50, "linear", function(){
$(this).delay(100);
$(this).animate({opacity:1}, 50, function(){
blink(this);
});
$(this).delay(100);
});
}</script>
<script type="text/javascript">$(document).ready(function() {blink(".blinking");}); </script>
<style>
.bold {
font-weight: bold;
}
.red {
color: #ff0000;
}
</style>
<span class="blinking red bold">96.7%</span>
Recent Posts
Recent Posts