File: index.html

Recommend this page to a friend!
  Classes of Everton da Rosa   Notifly Basic Notification   index.html   Download  
File: index.html
Role: Example script
Content type: text/plain
Description: Example of use
Class: Notifly Basic Notification
Show notifications for a period of time on a page
Author: By
Last change: fixed link to css and js
Date: 8 years ago
Size: 904 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <html > <head> <meta charset="UTF-8"> <title>Notifly :: Basic Notification</title> <link rel="stylesheet" href="style.css"> </head> <body> <!-- This is an example of Notifly use only teaching purposes. --> <div> <label>Notification text</label> <textarea id="msg"> Notifly is cool. ;-) </textarea> </div> <div> <label>Notification display time</label> <input type="number" step="1" value="0" id="time"> </div> <div> <label>Display position</label> <select id="position"> <option value="notifly-top-center" selected>At the top, centralized</option> <option value="notifly-bottom-right">Bottom right</option> </select> </div> <button onclick="show()">Show</button> <script src="notifly.js"></script> </body> </html>