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

vue-book-component

v1.1.3

Published

a flip book plugin for vue

Downloads

34

Readme

README:

demo preview

预览

install

vue >= version 2.1

npm install vue-book-component --save

require

import Vue from 'vue'
import Book from 'vue-book-component'
Vue.use(Book)

template:

   <book :data="pages"
         ref="book">
     <template scope="prop">
       <img :src="prop.page.url">
       <p>{{ prop.page.title }}</p>
     </template>
   </book>

props:

prop | desc | type | default | required ---|------|------|------|--- styleForPageMain | 书的样式调整 | Object | {} | false styleForPageIndex | 页码的样式调整 | Object | {} | false data | 书页数据 | Array | [x] | true turnPageByHand | 是否允许手动翻页 | Boolean | true | false initPage | 初始页码 | Number | 1 | false autoNextPage | 自动翻页 | Boolean | false | false duration | 翻页动画时间 | Number | 1000ms | false autoNextPageDelayTime | 每个索引页的延迟时间[一个页面分为左右两个索引页] | Number | 3000 | false showPageIndex | 是否显示页码 | Boolean | true | false startPageIndex | 开始显示索引的页面[索引页] | Number | 0 | false endPageIndex | 结束显示索引的页面[索引页] | Number | 9999 | false

Events:

Event | desc | eventParams ---|------|--- atFirstPage | 翻到第一页时触发 | 见下 atEndPage | 翻到最后一页时触发 | 见下 turnStart | 开始翻页动画时触发 | 见下 turnEnd | 动画结束后触发 | 见下 next | 进行下一页时触发 | 见下 prev | 进行上一页时触发 | 见下 indexPageChange | 每个索引页改变触发 | 当前索引页

  • EventParams
  // arguments:
  {
     0: 当前页(按整个页面计算,从1开始)
     1: 当前两个索引页(一个页面分为左右两个索引页,从0开始)
     2: 当前两个索引页的数据
  }

Methods

// 向下翻页,默认一页,可指定页数
this.$refs.book.next(num)
// 向上翻页,默认一页,可指定页数
this.$refs.book.prev(num)