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

@~lisfan/vue-image-placeholder

v1.0.0-alpha.3

Published

vue指令插件-占位图片加载器:若请求的资源图片加载失败,使用默认占位图片代替

Downloads

3

Readme

logger 日志打印器

API documentation

Feature 特性

  • 解决提交时因eslint提示console的语句无法通过问题
  • 仅在开发环境打印日志,生产环境不打印日志

Detail 详情

  • 在console上包装了一层,支持console的所有的方法(包含部分非标准APi,但不包含未被废弃的API),部分API做了变化和新增加,未提及的保原效果不变,只是在原api上封装了一层进行代理运行,API使用方法可以参考console API
    • 新增的isActivated、color、enable、disable方法
    • 调整error方法的作用:打印时会抛出错误,阻止脚本执行
    • 调整table方法的作用:如果数据非array或object类型,则使用this.log打印
  • 若需要在生产环境下调式日志,可以更改或设置LS离线存储的值
    • localStorage设置IS_DEV为true
    • localStorage设置LOGGER_RULES配置命名空间规则
  • 支持配置整个命名空间是否输出日志
  • 支持配置命名空间下某个实例方法是否输出日志

Install 安装

npm install -S @~lisfan/logger

Usage 起步

import Logger from '@~lisfan/logger'

// 配置规则
Logger.configRules({
   request:true, // 该命名空间支持打印输出
   request.error:false, // 该命名空间下的error方法不支持打印输出
   response:false // 该命名空间不支持打印输出
})

const logger = new Logger() // 默认打印器,命名空间为`logger`
const loggerRequest = new Logger('request') // 创建命名空间为`request`的打印器
const loggerResponse = new Logger('response')

// 创建打印器,但关闭调试功能
const loggerDebug = new Logger({
   name: 'debug',
   debug: false
})

loggerRequest.log('请求url')    =>    [request]: 请求url
loggerRequest.error('请求url')    =>    // 无内容打印
loggerResponse.error('响应数据')    =>    // 无内容打印
loggerDebug.log('请求url')    =>     // 无内容打印
  • 图片加载器
  • 模块性质:vue 指令 插件
  • 作用范围:pc、mobile
  • 依赖模块:lodash,utils/logger,utils/animation-handler
  • 来源项目:扫码点单H5
  • 初始发布日期:2017-05-24 20:00
  • 最后更新日期:2017-05-25 20:00
  • 特性

    • 图片加载之前会使用透明图片置换,接着才是加载图片逻辑
    • 图片请求失败时,使用占位图片代替,占位图片也请求失败时,则继续使用透明图片代替(避免在某些浏览器里会出现'叉')
    • 图片地址变化时,自动响应图片更新
    • 若图片已加载过,那么下一次再加载该图片时会直接显示(比如会忽略图片加载的动效),可以通过设置(forceEffect字段)决定是否强制启用每次动效载入
    • 支持img标签或者非img标签的背景图片加载
    • 可选的指定加载图片的目标节点的高宽尺寸(只指定一项时,另一边则同值,需同时指定),直接取ui稿的即可(会自动计算成rem单位),如v-image-load:100x200
    • 可选的自定义图片载入动效(会受全局动效配置级别的影响),如:v-image-load="'mj-ani-fadeIn'"
    • 动画样式的规则参考了vue的transition组件定义过渡的方式,动画样式定义时有如下规则
  • 图片加载时更改为'mj-ani-fadeIn-enter'样式,图片加载过程中更改为'mj-ani-fadeIn-enter-active',图片加载结束后更改为'mj-ani-fadeIn-end'(这么做的原因是,css3动效的触发条件是这一次的动效必须与上一次的动画不同,所以需要有个变化,而我们又需要有一个动效结束后固定样式,所以如果没有end这个类的话,就无法体现与上一次的不同)
    • 没有图片移除动效
    • 使用格式:
  • Changelog

  • 2017.03.18

    • 判断动效是否启用,决定是否支持动画
    • 引入vue的transition风格的动画类形式
  • 2017.03.30

    • 修复指令参数不传时产生的bug
  • 2017.04.03

    • 非img标签将以创建虚拟dom在最顶部方式处理
  • 2017.05.16

    • 更改插件获取图片地址的方式(以便配合另一个过滤器image-size使用)
    • 移除背景颜色或背景图片的支持(需要背景色过渡,手动设置背景色dom)
    • 将指令的动画类名参数改成接收value的形式
    • 若图片已加载完毕,下次加载图片不会启用动画,可以通过修饰符(forceEffect)强制开启动效
  • 2017.06.06

    • 图片下载成功后,分布载入到dom中(setTimeout方式实现)
  • 2017.06.12

    • 图片下载成功后,放在下载帧里刷新
  • Todo

  • Usage

  • ./config.js
  • import Vue from 'vue'
  • import imageLoad from 'plugins/directives/image-load'
  • Vue.use(imageLoad)
  • or