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

@donkeyclip/motorcortex-textfxs

v0.3.0

Published

textfxs plugin for MotorCortex

Downloads

8

Readme

MotorCortex-Textfxs

Table of Contents

Demo

Check it out here

Intro / Features

Using MotorCortex-Textfxs you can create stunning text animations.

This Plugin exposes three Incidents:

  • SvgLines
  • SvgExplosion
  • Shadow

Getting Started

Installation

$ npm install --save @donkeyclip/motorcortex-textfxs
# OR
$ yarn add @donkeyclip/motorcortex-textfxs

Importing and loading

import { loadPlugin } from "@donkeyclip/motorcortex";
import textfx from "@donkeyclip/motorcortex-textfxs";
const Plugin = loadPlugin(textfx);

Creating Incidents

SvgLines

const SvgLines = new Plugin.SvgLines(
  {
    text: "SvgLines",
    width: 1728,
    height: 300,
    background: "#22292C",
    colors: ["#64d3ce", "#2a92ce82", "#ff003c", "#2a92ce2e", "#2a92ce1c"],
    strokeWidth: 3,
    fontSize: 250,
    fontFamily: "Rubik Mono One",
  },
  {
    selector: ".container3",
  }
);

SvgLines Attrs

| Name | Are | Values | | ---------- | :------------------------------: | ------------------------------------------------: | | text | text | string | | width | total width of clip container | all positive numbers | | height | total height of clip container | all positive numbers | | background | the color of background | hex values or RGB(A) or text ("blue", "red", etc) | | colors | the list colors of svg elementes | hex values or RGB(A) or text ("blue", "red", etc) | | fontFamily | font family | string | | fontSize | size of the font | number | | fontWeight | the Weight of the font | number |

IMPORTANT

If you like to change the font family you need to include it into root clip properties

SvgExplosion

const SvgExplosion = new Plugin.SvgExplosion(
  {
    text: "SvgExplosion",
    width: 1728,
    height: 300,
    background: "#22292C",
    colors: [
      "#FBDB4A",
      "#F3934A",
      "#EB547D",
      "#9F6AA7",
      "#5476B3",
      "#2BB19B",
      "#70B984",
    ],
    fontFamily: "Rubik Mono One",
  },
  {
    selector: ".container1",
  }
);

SvgExplosion Attrs

| Name | Are | Values | | ---------- | :----------------------------: | ------------------------------------------------: | | text | text | string | | width | total width of clip container | all positive numbers | | height | total height of clip container | all positive numbers | | background | the color of background | hex values or RGB(A) or text ("blue", "red", etc) | | colors | list of colors for leter | hex values or RGB(A) or text ("blue", "red", etc) | | fontFamily | font family | string | | fontSize | size of the font | number | | fontWeight | the Weight of the font | number |

IMPORTANT

If like to change the font family you need to include it in to root clip properties

Shadow

const Shadow = new Plugin.Shadow(
  {
    text: "Shadow",
    width: 1728,
    height: 300,
    background: "#d52e3f",
    colors: ["#e942f5", "#efa032", "#46b59b", "#017e7f", "#052939", "#c11a2b"],
    fontSize: 250,
    textColor: "#fcedd8",
    fontFamily: "Pacifico",
    reverce: false,
  },
  {
    selector: ".container2",
  }
);

Shadow Attrs

| Name | Are | Values | | ---------- | :--------------------------------: | ------------------------------------------------: | | text | text | string | | width | total width of clip container | all positive numbers | | height | total height of clip container | all positive numbers | | background | the color of background | hex values or RGB(A) or text ("blue", "red", etc) | | colors | the list colors of svg elementes | hex values | | speed | animation speed. Defaults to 1 | num, min:0 | | textColor | the main color of text | hex values or RGB(A) or text ("blue", "red", etc) | | fontFamily | font family | string | | fontSize | size of the font | number | | reverce | reverse tha animation after finish | boolean | | fontWeight | the Weight of the font | number |

IMPORTANT

If you like to change the font family you need to include it into root clip properties

FontWeight

const FontWeight = new Clip.FontWeight(
  {
    width: 1920,
    height: 300,
    text: "FontWeight Animation",
    textColor: "#ff0000",
    repeats: 70,
    fontSize: 20,
    fontFamily: "Commissioner",
    fontWeightList: [100, 200, 300, 400, 500, 600, 700, 800, 900],
    rotate: 90
  },
  {
    selector: ".container4"
  }
);

FontWeight Attrs

| Name | Are | Values | | ---------- | :--------------------------------: | ------------------------------------------------: | | text | text | string | | width | total width of clip container | all positive numbers | | height | total height of clip container | all positive numbers | | textColor | the color of text | hex values or RGB(A) or text ("blue", "red", etc) | | repeats | total lines of text | number | | fontFamily | font family | string | | fontSize | size of the font | number | | rotate | degrees for rotate transformation | number | | fontWeightList | a list of all the weights that text will get | numbers |

Adding Incidents in your clip

clipName.addIncident(incidentName,startTime);

Contributing

In general, we follow the "fork-and-pull" Git workflow, so if you want to submit patches and additions you should follow the next steps:

  1. Fork the repo on GitHub
  2. Clone the project to your own machine
  3. Commit changes to your own branch
  4. Push your work back up to your fork
  5. Submit a Pull request so that we can review your changes

License

MIT License

Sponsored by