Аккумуляторы ladda 2450

Usage

CSS

You will need to include ONE of the two style sheets in the /dist directory.
If you want the button styles used on the demo page, use the ladda.min.css file.
If you want to have the functional buttons without the visual style (colors, padding, etc.),
use the ladda-themeless.min.css file.

HTML

Below is an example of a button using the animation style.

<button class="ladda-button" data-style="expand-right">Submit</button>

When the JS code runs to bind Ladda to the button, the class
will be automatically added if it doesn’t already exist. Additionally, a span
with class will automatically wrap the button text, resulting
in the following DOM structure:

<button class="ladda-button" data-style="expand-right">
    <span class="ladda-label">Submit</span>
</button>

Buttons accept the following attributes:

  • data-style: one of the button styles

    • expand-left, expand-right, expand-up, expand-down
    • contract, contract-overlay
    • zoom-in, zoom-out
    • slide-left, slide-right, slide-up, slide-down
  • data-color: green/red/blue/purple/mint
  • data-size: xs/s/l/xl, defaults to medium
  • data-spinner-size: pixel dimensions of spinner, defaults to dynamic size based on the button height
  • data-spinner-color: a hex code or any named CSS color, defaults to
  • data-spinner-lines: the number of lines for the spinner, defaults to

JavaScript

Start by importing the Ladda module:

import * as Ladda from 'ladda';

The following approach is recommended for JavaScript control over your buttons:

// Create a new instance of ladda for the specified button
var l = Ladda.create(document.querySelector('.my-button'));

// Start loading
l.start();

// Will display a progress bar for 50% of the button width
l.setProgress(0.5);

// Stop loading
l.stop();

// Toggle between loading/not loading states
l.toggle();

// Check the current state
l.isLoading();

// Delete the button's ladda instance
l.remove();

To show the loading animation for a form that is submitted to the server
(always resulting in a page reload) the method can be used:

// Automatically trigger the loading animation on click
Ladda.bind('button');

// Same as the above but automatically stops after two seconds
Ladda.bind('button', {timeout: 2000});

Note: when using the method on buttons that are inside a form,
loading indicators will not be shown until the form is valid.

All loading animations on the page can be stopped by using:

Ladda.stopAll();

Другие статьи категории «Аккумуляторы»

Panasonic Eneloop BK-3MCCE и их циклирование.

Местный автор очень любит всякие электронные девайсы. Избыточно и неумеренно, грешен. Но делает он это всё-таки с оглядкой. Ибо самый поганый аспект концепции общества потребления состоит в побуждении пользователя выкинуть свой текущий, и вполне ещё работоспособный девайс, чтобы тут же заменить его почти таким же.

Быстрее, выше, сильнее, и всё такое.

Местный автор, как многие уже давно догадались, является потомственным технологическим извращенцем. То ли звёзды так сошлись, то ли гены виноваты, но Бритва Оккама – это святое, и в личном пантеоне богов, которым местный автор эпизодически и с упоением матерно молится, все тамошние аборигены её свято чтят.

Аккумуляторы Sanyo Eneloop HR-3UTGB от самураев.

Современный человек шибко любит всякие гаджеты, и зачастую имеет их в пользовании превеликую кучку. Если тот человек уже познал Дао, то подходит к их выбору осознанно. В частности, стремится к унификации хотя бы на уровне шнурков и зарядников, чтобы пользоваться всей этой электроникой было максимально удобно.

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *

Adblock
detector