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

aring-vue-marquee

v2.0.8

Published

AringVueMarquee is a small component similar to the effect of LED rolling light.

Downloads

7

Readme

🌈Vue跑马灯

简体中文 | English

🎈在线演示

✨介绍

AringVueMarquee是一个类似LED滚动灯效果的小组件,通过CSS3 Animation + Transform 方案来实现文本滚动以适应移动端,并减轻间隔器方案造成的性能损耗。

您可以自定义 颜色/尺寸/点击事件 等来满足您的业务需求。

📦安装

npm install aring-vue-marquee -S

🔨使用

全局引用

main.js

import VueMarquee from 'aring-vue-marquee';
Vue.use(VueMarquee);

组件内引用

<template>
  <vue-marquee>
    <span>此处定义滚动内容</span>
  </vue-marquee>
</template>
<script>
  import VueMarquee from 'aring-vue-marquee';
  export default {
    components: { VueMarquee }
  };
</script>

🎨API

Attributes

| 参数 | 类型 | 可选值 | 默认值 | 说明 | | :----- | :----- | :----- | :----- | :----- | | speed | Number | —— | 10 | 滚动速度,默认 10,大于 10 则更快,小于 10 则更慢 | | direction | String | up/right/down/left | left | 滚动方向 | | delayTime | Number | —— | 500 | 滚动间隔时间,单位ms | | color | String | —— | #333 | 文本颜色 | | cursor | String | —— | text | 鼠标放置文本时的光标 | | size | String | small/large | —— | 尺寸 | | mouseover | Blooean | —— | true | 是否允许鼠标移入暂停滚动 |

Event

| 事件名称 | 说明 | 回调参数 | | :----- | :----- | :----- | | click | 可在@click中自定义点击文本的事件 | —— |

Methods

| 方法 | 说明 | | :----- | :----- | | stopRoll | 停止滚动 | | continueRoll | 继续滚动 | | reset | 重置 |

Slot

| 插槽名 | 说明 | | :----- | :----- | | (default) | 插入滚动内容 | | icon | 前置小图标 |

📜其它版本

[email protected]