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

smart-fullscreen-v

v1.0.3

Published

Vue framework based on the comprehensive screen plug-in, can intelligent adaptation screen.

Downloads

10

Readme

smart-fullscreen-v

基于Vue框架的全面屏插件,可以智能适配屏幕。

安装

$ npm install smart-fullscreen-v

使用

main.js

import SmartFullscreenV from "smart-fullscreen-v"

Vue.use(SmartFullscreenV)

页面上使用

<template>
  <div id="app">
   <SmartFullscreen name="demo" @click="show">
        // 内容        
    </SmartFullscreen>
  </div>
</template>

<script>
export default {
  name: 'App',
  data () {
    return {
      isShow: false     // 标记是否全屏
    }
  },
  methods: {
    show () {
      if (!this.isShow) {
        this.$smart.opened('demo', true)    // 打开全屏  
        this.isShow = true
      } else {
        this.$smart.closed()    // 关闭全屏
        this.isShow = false
      }
    }
  }
}
</script>

组件 Props

| 名称 | 类型 | 是否必传 | 默认值 | 说明 | | :----: | :----: | :----: | :----:| :----: | | name | String | 是 | - | 名称,$smart需要改字段才能正常使用 | | width | Number | 否 | 1920 | 宽度 | | height | Number | 否 | 1080 | 高度 | | isBody | Boolean | 否 | false | 是否需要插入body | | debounceDuration | Number | 否 | 100 | 页面变化节流时间 | | loadTransition | Boolean | 否 | false | 加载时是否需要过渡动画 |

组件事件

| 名称 | 参数 | 返回值 | 说明 | | :----: | :----: | :----: | :----: | | click | - | void | 当点击组件时触发 |

附加方法

可全局调用this.$smart来使用附加方法

this.$smart.opened()    // 示例

| 名称 | 参数 | 返回值 | 说明 | | :----: | :----: | :----: | :----: | | opened | function ( name,isParent ) | void | 打开全屏 | | closed | - | void | 关闭全屏 |

opened 参数

| 名称 | 类型 | 是否必传 | 默认值 | 说明 | | :----: | :----: | :----: | :----:| :----: | | name | String | 是 | - | 需要全屏的组件名称 | | isParent | Boolean | 否 | - | 是否以父容器为基准全屏 |