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

iobserveit

v1.0.0

Published

Calculating the percentage of elements visibility on js

Downloads

2

Readme

iObserveIt & iObserveItLight

Данные скрипты вычисляют процент видимости или прокрутки элемента

Import

import iObserveIt from 'iobserveit/src/iObserveIt';
import iObserveItLight from 'iobserveit/src/iObserveItLight';

iObserveIt

Это основная версия данного скрипта, с основным набором возможностей и настроек.

Настройка происходит либо через параметры при объявлении, либо через дата-аттрибуты.

Параметры:

  • mode - Режим наблюдения и обновления процентов.

    • Type = number ; Default = '1'; ===
    1. Type = '1' - Режим, при котором процент не идет на уменьшение, сработает только один раз.
    2. Type = '2' - Режим, при котором высчитывается процент прокрутки, а не процент видимости элемента. Соответственно начало элемента = 0%, а конец 100%.
    3. Type = '3' - Режим, при котором высчитывается процент видимости элемента, всегда.
  • triggerPercent - Процент при котором сработает триггер и присвоется класс.

    • Type = number ; Default = 1;
  • multiplier - В случае, если высота елемента больше окна бразуера, то процент дополнительно домножается, чтобы при полном заполнении окна процент был равен 100.

    • Type = boolean ; Default = true;
  • action - Есть ли какие действия при срабатываении триггера.

    • Type = boolean ; Default = true;
  • activeClass - Активный класс

    • Type = number ; Default = 'is-visible';
  • triggerAction - Функция, которая начнет выполнение как сработает триггер

    • Type = function ; Default = none;

Пример объявления с параметрами:

const test = new iObserveIt(element, {
    mode: '1',
    triggerPercent: '25',
    multiplier: true,
    action: true,
    activeClass: 'is-active',
    triggerAction: function (){
        console.log('percent = ' + test.getPercent() + '%');
    }
});

Аттрибуты:

  • data-observe-mode
  • data-observe-multiplier
  • data-observe-action
  • data-observe-trigger
  • data-observe-class

Методы:

  • init() - Начинает наблюдение
  • stop() - Останавливает наблюдение
  • run() - Продолжает наблюдение
  • update() - Обновляет значения
  • getElement() - Возвращает отслеживаемый элемент
  • getPercent() - Возвращает текущий процент видимости элемента
  • setPercent(percent) - Задает процент видимости элемента

iObserveItLight

Данная версия является более легкой и имеет только один режим, который вычисляет видимость элемента, постоянно.

Настройка происходит либо через параметры при объявлении, либо через дата-аттрибуты.

Параметры:

  • triggerPercent - Процент при котором сработает триггер и присвоется класс.

    • Type = number ; Default = 1 ;
  • action - Есть ли какие действия при срабатываении триггера.

    • Type = boolean ; Default = true ;
  • activeClass - Активный класс

    • Type = number ; Default = 'is-visible' ;
  • triggerAction - Функция, которая начнет выполнение как сработает триггер

    • Type = function ; Default = none ;

Пример объявления с параметрами:

const test = new iObserveItLight(element, {
    triggerPercent: '25',
    action: true,
    activeClass: 'is-active',
    triggerAction: function (){
        console.log('percent = ' + test.getPercent() + '%');
    }
});

Аттрибуты:

  • data-observe-action
  • data-observe-trigger
  • data-observe-class

Методы:

  • init() - Начинает наблюдение
  • stop() - Останавливает наблюдение
  • run() - Продолжает наблюдение
  • update() - Обновляет значения
  • getElement() - Возвращает отслеживаемый элемент
  • getPercent() - Возвращает текущий процент видимости элемента
  • setPercent(percent) - Задает процент видимости элемента