Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@johnboker
Last active April 21, 2016 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnboker/567e539fc82796de9d32 to your computer and use it in GitHub Desktop.
Save johnboker/567e539fc82796de9d32 to your computer and use it in GitHub Desktop.
jquery.blink.js example
<html>
<head>
<script src="https://code.jquery.com/jquery-2.2.3.min.js"></script>
<script src="jquery.blink.js"></script>
<script>
$(document).ready(function() {
$('.blink').blink({delay: 200});
});
</script>
</head>
<body>
<span class="blink">this</span> is some <span class="blink">blinking</span> text.
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment