Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Blink in modern browsers</title>
</head>
<body>
  <a href="://google.com" target="_blank" class="blink">
    Blink!
  </a>
</body>
</html>
 
/* Standard (Mozilla) */
@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.blink {
  animation: blink 600ms infinite;
}
/* Chrome & Safari */
@-webkit-keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.blink {
  -webkit-animation: blink 600ms infinite;
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers