Guest User

Untitled

a guest
Jan 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var blinkify = function( el, // DOM-Element
  2. rate // Speed (Default: 500 ms)
  3. ){
  4. setInterval(function(){ // Interval
  5. el.style.opacity ^= 1 // change the visibility
  6. }, rate || 500 );
Add Comment
Please, Sign In to add comment