npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@fixelrinnovative/tootstrap

v1.0.0

Published

tootstrap is jquery plugin designed for creating highly customizable Bootstrap toast notifications. This plugin enables developers to display toast messages with ease and flexibility, offering options for different types, positions, colors, buttons, and c

Downloads

22

Readme

tootstrap.js

tootstrap.js is a jQuery plugin designed for creating highly customizable Bootstrap toast notifications. This plugin enables developers to display toast messages with ease and flexibility, offering options for different types, positions, colors, buttons, and callbacks.

Features

  • Toast Types: Supports success, error, info, warning
  • Positioning: Display toasts at any corner (top-left, top-right, bottom-left, bottom-right)
  • Customizable Buttons: Configure button text, icons, and add click callbacks for OK and Cancel
  • Auto-hide: Automatically hide after a set duration
  • Custom Styling: Modify background color, text color, margin, padding, etc.
  • Callbacks: Handle OK and Cancel button actions

Installation

Include via CDN:

  1. Include jQuery:
  2. Include tootstrap.js:
  3. Include FontAwesome for button icons:

Include Locally:

  1. Download tootstrap.js and place it in your project directory.
  2. Include the script in your HTML:

Usage

Basic Example:

$("#myDiv").tootstrap({
    type: 'success',
    message: 'Your data has been saved!',
    title: 'Success',
    position: 'top-right',
    onOk: function() {
        alert('OK clicked');
    },
    onCancel: function() {
        alert('Cancel clicked');
    }
});

Customization Options

You can customize the toast notifications by passing an options object when calling tootstrap. Here's a full list of available options | Option | Type | Description | Default Value | |---------------------|-----------|-----------------------------------------------------|-----------------| | type | string | Type of toast: success, error, info, warning | info | | position | string | Position of toast: top-left, top-right, bottom-left, bottom-right | top-right | | message | string | The content of the toast message | 'This is a toast message!' | | title | string | Title text displayed at the top of the toast | 'Notification' | | showCancelButton | boolean | Whether to show the cancel button | true | | showOkButton | boolean | Whether to show the OK button | true | | cancelButtonText | string | Text for the cancel button | 'Cancel' | | okButtonText | string | Text for the OK button | 'OK' | | cancelButtonIcon | string | FontAwesome icon for the cancel button | 'fa fa-times' | | okButtonIcon | string | FontAwesome icon for the OK button | 'fa fa-check' | | onOk | function| Callback function for OK button click | function() {} | | onCancel | function| Callback function for Cancel button click | function() {} | | autoHide | boolean | Automatically hide the toast after a duration | true | | hideAfter | number | Time in milliseconds before auto-hiding | 3000 | | margin | string | Custom margin for the toast | '1rem' | | padding | string | Custom padding for the toast | '1rem' | | backgroundColor | string | Background color for the toast | '#000000' | | textColor | string | Text color for the toast | '#ffffff' |

Author