jQuery Plugin To Show A Loading Dots Cross-Browser | loadingDots

loadingDots is a jQuery plugin for showing loading points across the browser.

loading dots css, loading dots animation, 3 dot loading animation css loading dots text, css loading dots

Fullscreen Loading Indicator Component For Vue.js

How to make use of it:

1. Load the minified version of the dot.js plugin after jQuery.

<script src="/path/to/cdn/jquery.slim.min.js"></script>
<script src="/path/to/dot.min.js" defer></script>

2. Create a container for mount points.

<div id="loadingdots"></div>

3. Configure the plugin to display moving points inside the container you just created.

$(function(){
  $('#loadingdots').loadingdots();
});

4. Set animation duration.

$(function(){
  $('#loadingdots').loadingdots({
    duration: 500
  });
});

5. Apply your own CSS styles to the points.

.dot {
  background: #000;
  float: left;
  height: 25px;
  margin-left: 5px;
  width: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  opacity: 0;
}

jQuery Plugin To Show A Loading Indicator Using Dots, loadingDots Github


See Demo And Download

Official Website(midudev): Click Here

This superior jQuery/javascript plugin is developed by midudev. For extra Advanced Usages, please go to the official website.

Related Posts

Star Rating Plugin Control Based On Radio Buttons

Star Rating Radio Buttons, the star rating plugin is a plugin for the jQuery Javascript library that creates a non-intrusive star rating control based on a set…

A Pure QRCode Encode and Decode JavaScript Library | Decoding/Encoding

QR Code With Pure JavaScript - A pure JavaScript QRCode encode and decode library. QR code encoder and decoder instruments help you shortly generate QR codes from…

Simple and Lightweight Vertical 3-Dot Context Menu

The 3-dot Context Menu allows for a simple and lightweight implementation to show 3 vertical dots allowing the user to click and show a menu. Below is…

Pure Toast Notification JavaScript Library | Toastify JS

Toast Notification JavaScript - Toastify JS is an easy, lightweight, vanilla JavaScript library used for sending stackable, non-blocking toast messages to end customers. Features Multiple stacked notifications…

Dialogs Based on Bootstrap 5 Modal Component | BS-DIALOGS

BS-DIALOGS is a small library for creating modal windows for notification and input using the Bootstrap 5 modal. It automatically handles DOM processing and provides callbacks to…

Creating Swipeable Image Carousel | Slider-cut

slider-cut is a modern, responsive, effective, and easy-to-use mobile circular component that enables you to rotate through images by mouse drag and touch gestures or by pressing…