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

textani

v2.0.1

Published

1.修改如果样式表中不存在style标签,就新建一个接收关键帧动画属性的标签; 2.修复多处 bug;3.整体节点插入从 append 模式转为 innerHTML 模式;4.通用样式直接构建相应的选择器的样式;5.新增按顺序淡入模式;

Downloads

22

Readme

文字随机动画

image

介绍

  • 功能:将一个句子切分成若干个字符的组合,随机从下到上渐入动画

  • 原理:根据不同条件切分内容,然后使用 span 标签包裹,控制 animation-delay 属性控制偏移动画

    • 获取当前文档中的样式表:document.styleSheets

    • 向样式表中添加新的样式:document.styleSheets[0].insertRule(内容, index)

      • 注:必须当前文档的样式表中存在样式标签才行,否则需要自行添加 style 标签

    image

快速上手

使用链接引入和安装依赖包选用一种即可

一.可以使用连接引入

<script src="https://cdn.jsdelivr.net/gh/sonicexx/textAnimation@master/linkJS/textani.js"> </script>

直接使用实例化

new TextAni({
  //API
});

二.安装依赖包

npm install textani

全局注册(在 main.js 文件里注册)

import TextAni from 'textani';
global.TextAni = TextAni;

局部注册(在你所使用的 vue 里注册)

import TextAni from 'textani';

API

重要:为解决首帧原本内容闪烁,需要给动画元素添加一个其实 透明度为 0 的样式

.text {
  opacity: 0;
}
new TextAni({
  el: '.text', //必填
  text:,//选填,指定所使用的文字内容
  spl: 0, //选填
  //默认 0,每个字符都有独立的动画
  //写入数字 比如 4,动画总共分为 4 步,4 步后全部字符显示,动画执行结束
  //写入分割字符 比如 ',',将以 ',' 字符后作为断点分割字符串,分别是独立的动画

  aniName: '自定义的动画名称', //选填
  //默认 透明度淡入动画

  keepTime: '1s', //选填
  //默认 1s,每个字符动画轨迹的时间

  delay: '1s', //选填
  //默认 1s,两个动画之间的间隔时间

  allDelay: '0s', //选填
  //默认 0s,整体动画的延迟时间

  aniMode: 'ease-in-out', //选填
  //默认:ease-in-out

  shuffle: true, //选填,选择动画是否按顺序淡入
  //默认:true
});

例子

默认渐入动画:透明度渐入

<div class="title">
  <p class="text">梯田,弯,弯闪,银光。</p>
</div>
new TextAni({
  el: '.text',
});

自定义渐入动画:自定义 @keyframes a{...}

@keyframes a {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-10%);
    color: red;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
<div class="title">
  <p class="text">梯田,弯,弯闪,银光。</p>
</div>
new TextAni({
  el: '.text',
  spl: 0,
  aniName: 'a',
  keepTime: '.8s',
  delay: '.3s',
  aniMode: 'ease-out',
});
功能备注:目前还不支持有内嵌标签的情况

PS:一个前端界的小学生,勿喷 多指教 😶