tada

Lightweight, no dependency library for lazy image load. Duplicate element check, throttled scroll handler, percent threshold supported.

  • 所有者: fallroot/tada
  • 平台:
  • 許可證: MIT License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

TADA

Lightweight, no dependency library for lazy image load.

Features

  • Uses IntersectionObserver API
  • Duplicate element check
  • Debounced event handler
  • Percentage threshold

Usage

Use data-src attribute for actual image. This attribute name can be changed by calling Tada.setup method.
If that attribute is used in non <img> tag, image will be background image.

<img src="placeholder.png" data-src="original.png">

<div data-src="background.png"></div>
/* CSS selector */
Tada.add('ul img')

/* HTML element */
var img = document.createElement('img')
img.setAttribute('src', 'placeholder.png')
img.setAttribute('data-src', 'original.png')

Tada.add(img)

/* In jQuery */
$.fn.tada = function () {
  return this.each(function () {
    Tada.add(this)
  })
}

$('img').tada()

Settings

If you want to change default settings, call Tada.setup method before using Tada.add.

Tada.setup({
  attribute: 'data-src',
  delay: 50,
  threshold: '20%',
  callback: function (element) {
    console.log(element)
  }
})

Tada.add(element)

Options

name, default, unit, description
----, -------, ----, -----------
attribute, data-src, attribute name for image url
delay, 50, milliseconds, delay for scroll event activation
threshold, 20%, % or px. px can be omitted, margin for early loading
callback, function(element) {}, callback after image loaded.

Browser compatibility

Internet Explorer 9+ and other major browsers are supported.

主要指標

概覽
名稱與所有者fallroot/tada
主編程語言JavaScript
編程語言JavaScript (語言數: 1)
平台
許可證MIT License
所有者活动
創建於2015-03-12 20:47:02
推送於2022-11-16 23:25:52
最后一次提交2021-03-09 11:24:10
發布數5
最新版本名稱v0.2.2 (發布於 2018-10-04 12:42:20)
第一版名稱v0.0.1 (發布於 2015-03-13 13:34:02)
用户参与
星數114
關注者數10
派生數12
提交數21
已啟用問題?
問題數3
打開的問題數3
拉請求數9
打開的拉請求數8
關閉的拉請求數4
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?