watching-you
TypeScript icon, indicating that this package has built-in type declarations

0.0.13 • Public • Published

watching-you

npm version

Installation

ESM

npm

npm install watching-you

yarn

yarn add watching-you

UMD

<!--HTML-->
<head>
  <script src="https://cdn.jsdelivr.net/npm/watching-you/dist/watching-you.umd.cjs"></script>
</head>

Quickstart

HTML

<div class="eye">O</div>

JavaScript

ESM

import WatchingYou from 'watching-you';

const options = {/* options */};
const watcher = new WatchingYou('.eye', options);
watcher.start();

UMD

const WatchingYou = window['watching-you'];

const options = {/* options */};
const watcher = new WatchingYou('.eye', options);
watcher.start();

API Reference

Initialize

new WatchingYou(watcher, restOptions);
new WatchingYou(options);

Options

name type default description
watcher string | HtmlElement undefined The DOM that becomes the eye, i.e. the DOM that is given the css transform
target string | HtmlElement undefined The DOM being watched
targetType 'mouse' | 'dom' | 'input' | 'textarea' 'mouse' watching-you determines the subsequent behavior based on the targetType.
power number | {x: number, y: number} 50 The maximum displacement distance of the watcher, which is always a circle
rotatable boolean true Does Watcher rotate
movable boolean true Does Watcher move

Method

name type description
start (): void Start watching
stop (): void Stop watching
setWatcher (watcher?: string | HtmlElement): void Change watcher property
setTarget (targetProps?: {target?: string | HtmlElement; targetType?: 'mouse' | 'dom' | 'input' | 'textarea'; }): void Change target and targetType properties
setPower (power: number | {x: number, y: number}):void Change power property
setRotatable (rotatable: boolean = true): void Change rotatable property
setMovable (movable: boolean = true): void Change movable property

Package Sidebar

Install

npm i watching-you

Weekly Downloads

4

Version

0.0.13

License

ISC

Unpacked Size

28.8 kB

Total Files

16

Last publish

Collaborators

  • jj811208