GithubHelp home page GithubHelp logo

banner-alert-js's Introduction

Banner-Alert-js

Offers methods for posting UI alerts.


Table of contents



Installation


You can use NPM to download package into your project

npm install banner-alert-js

OR you can import the module directly in your project with ES6 Modules

<script type="module">
    import { BannerAlert } from './banner-alert-js/banner-alert.js';
</script>


Basic Usage

See '/demo/basic-usage.html' in repo for complete example


HTML

<div class="banner-alerts"></div>
<button onclick="window.triggerExampleAlerts();">Trigger Alert</button>

JavaScript

<script type="module">
    // ES6 Module Import
    import { BannerAlert } from '/banner-alert-js/banner-alert.js'; 

    window.triggerExampleAlerts = function() {
        let messageType = 'success'; // Can be any value
        let message     = 'This is a success alert';
        let messageTtl  = 3000; // Measured in seconds
        let parentContainer = document.querySelector( '.banner-alerts' ); // This container can be anywhere in the document
        let customClassList = [ 'foo', 'bar', 'baz' ];

        BannerAlert.transmit( 
            messageType, 
            message, 
            parentContainer, 
            messageTtl, 
            customClassList
        );	
    }
</script>


Public Methods


Object Method Description
BannerAlert transmit Transmit receives five arguments:

- Alert Type; Expected value used to set [data-message-type] attribute on new HTML banner element. Can be used to style the alert.

- Message; Expected value string, used to populate innerHTML of new HTML banner element

- Parent Container Denotes where to append the alert element

- TTL; Expected value number, used to determine the duration of alert visibility

- Custom Class List; Expected value array of class names, adds classes to banner element

banner-alert-js's People

Contributors

jvuzzell avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.