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

wd-lottery

v1.0.2

Published

抽奖插件

Downloads

22

Readme

npm npm install size GitHub license

在 vue2.x / vue3.x 中使用

方式 1:通过 import 引入

  1. 首先安装插件
# npm 安装:
npm install wd-lottery

# yarn 安装:
yarn add wd-lottery
  1. 然后找到 main.js 引入插件并 use
// vue2.x
import { LuckyWheel } from 'wd-lottery'

// TODO: vue3.x 
import { LuckyWheel } from 'wd-lottery/vue3'
  1. 最后在组件内使用 <LuckyWheel></LuckyWheel>大转盘抽奖
<template>
  <div>
    <!-- 大转盘抽奖 -->
    <LuckyWheel
      width="200px"
      height="200px"
    >
      <template v-slot:bg>
        <img src="转盘背景" class="bg" alt="">
      </template>
      <template v-slot:item="{ item }">
        <div class="info">
          <img class="prize-img" :src="item.image" />
          <div class="prize-name">{{item.name}}</div>
        </div>
      </template>
    </LuckWheel>
  </div>
</template>

方式 2:通过 script 标签引入

为了避免 CDN 链接出现异常或波动,我非常建议你缓存到本地或服务器

Attributes

| 参数 | 必输 | 默认 | 类型 | 说明 | 备注 | |-----|------|-----|-----|-----|------| | prizeList | 是 | | array | 奖品列表 | | | width | 是 | | string | 转盘宽度| | | height | 否 | =width | string | 转盘高度| | | turnsNumber | 否 | 5 | int | 转动的圈数| | | | turnsTime | 否 | 5 | int | 转动持续时间(秒)| | | showBg | 否 | true | boolean | 是否启用内置转盘背景| | | prizeBgColors | 否 | ['#F47F45', '#FFA468'] | array | 内置转盘背景颜色| 每一块扇形的背景色,循环填充 | | borderColor | 否 | #ff9800 | string | 内置转盘背景每一块扇形的外边框颜色| |

Methods

| 方法名 | 说明 | 参数 | |-----|------|-----| | rotate | 转盘开始转动方法 | Function(index) |

Events

| 方法名 | 说明 | 回调参数 | |-----|------|-----| | over | 转盘停止转动 | 当前奖品信息 |

Slot

| name | 说明 | |-----|------| | over | 转盘停止转动 |