Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.23 KB

README.md

File metadata and controls

47 lines (36 loc) · 1.23 KB

blinkTitle.js

Is a Pure Javascript Implementation of TitleBar Alert or Notification.It Can Perform Blinking of Html Titlebar for Titlebar Alert or Titlebar Notification http://argunner.github.io/blinkTitle.js/

#Preview Preview

#Usage Getting Started

<script type="text/javascript" src="https://raw.githubusercontent.com/argunner/blinkTitle.js/master/index.js"></script>

#Usage

####Regular Blink

  blinkTitle('message1','message2',delayTime,false);

####Regular Blink with Timeout (milliseconds) (stops after 'timeout')

  blinkTitle('message1','message2',delayTime,false,timeout);

####If You Want Notify When User is On Other Tab

  blinkTitle('message1','message2',delayTime,true);
  

####If You Want Notify When User is On Other Tab with Timeout (milliseconds) (stops after 'timeout')

  blinkTitle('message1','message2',delayTime,true);

####Stop

  blinkTitleStop();

#Examples http://argunner.github.io/blinkTitle.js/

#Not Yet Implemented

  1. Timeout Implementation implemented by @michaeldjeffrey
  2. Simplify Arguments By Converting them To JSON
  3. Minifying Script