Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<style>
.blink_me
{
animation: blinker 1s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
</style>
</head>
<body>
<div id="blink_id" class="blink_me">BLINK ME</div>
<p></p>
<button id="button">Toggle Blink</button>
<script>
$('#button').click(function() {
$("#blink_id").toggleClass('blink_me');
});
</script>
</body>
</html>
The most helpful CSS solutions
How to set bootstrap popover borders in css ?CSS Click to see more ... 1.4K 91