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

@fnet/ad-ui

v0.1.44

Published

## Introduction

Downloads

714

Readme

@fnet/ad-ui

Introduction

@fnet/ad-ui is a straightforward JavaScript library designed to facilitate the integration of video advertisements with interactive UI elements into web projects. It allows developers to easily create an overlay for displaying ads with additional features to enhance user interaction.

How It Works

The library enables embedding a video advertisement container on a webpage, which includes a video player and interactive buttons for user actions. The ad UI can be configured to appear either as a fixed or absolute positioned element within a specified HTML container or the whole browser window. A button allows users to close the ad after a specified time delay.

Key Features

  • Video Ad Display: Embed video ads directly onto a webpage using provided video content.
  • Interactive Elements: Includes a configurable button for closing ads, with a countdown timer.
  • Customized Layout: Allows either a fixed or absolute positioning of the ad container to fit various webpage layouts.
  • Play and Pause Controls: Built-in controls to handle play and pause states for better user interaction.

Conclusion

@fnet/ad-ui is a practical solution for integrating video advertisements with interactive user interfaces on web pages. It offers essential functionalities for ad presentation and user engagement in a simple, customizable library.

Developer Guide: @fnet/ad-ui

Overview

The @fnet/ad-ui library offers a set of tools designed to integrate interactive advertisements seamlessly into your web applications. This library allows developers to create video ads with optional interactive components such as a dismissible "Corner Button," and to manage video playback states effectively within custom containers.

Installation

To install the @fnet/ad-ui library, you can use either npm or yarn. Follow the instructions below to get started:

Using npm:

npm install @fnet/ad-ui

Using yarn:

yarn add @fnet/ad-ui

Usage

The library provides functions to create and manage an ad display on web pages. Here are practical examples to help you understand how to use it in a real-world scenario.

  1. Initialize the Ad UI: Set up an ad environment by specifying the container and optional configurations.
  2. Play and Control the Ad: Integrate video playback controls and add interactive buttons to allow user interaction, such as closing the ad.

Examples

Basic Ad Setup

To create a basic advertisement setup, use the AdUI function. Here is an example of how you might implement it:

import { AdUI } from '@fnet/ad-ui';

// Initialize the Ad UI within a specific container
const initializeAd = async () => {
  const adInstance = await AdUI({
    container: document.getElementById('ad-container'),
    name: 'mainAd'
  });

  // Show the ad with options to close
  adInstance.show({
    close: {
      enabled: true,
      onClick: () => {
        console.log('Ad Closed');
        adInstance.hide(true);
      }
    }
  });
};

initializeAd();

Advanced Ad Control

Using the AdUIPlay function, you can manage the pausing and resuming of ads, adding further interactivity to your user interface.

import { AdUI, AdUIPlay } from '@fnet/ad-ui';

const setupAdInteraction = async () => {
  const adInstance = await AdUI({
    container: document.getElementById('interactive-ad')
  });

  const playControl = await AdUIPlay({
    adPlayer: adInstance
  });

  // Example: Pausing the ad on user interaction
  document.getElementById('pause-button').onclick = () => {
    adInstance.videoPlayer.pause();
  };

  // Resume ad as required
  playControl;
};

setupAdInteraction();

Acknowledgement

The @fnet/ad-ui library utilizes standard web APIs and JavaScript features to deliver its functionality. Special thanks to contributors who have maintained and enhanced this library to ensure it integrates efficiently into modern web applications.

Input Schema

$schema: https://json-schema.org/draft/2020-12/schema
type: object
properties:
  container:
    type: object
    description: The DOM element to which the UI will attach.
  name:
    type: string
    description: The name of the cache record.
    default: master
required:
  - container