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

@eightfeet/message

v2.0.25

Published

弱提示模块,需要promise polyfill <a href="http://www.eightfeet.cn/MessageV2/lib/index.html" traget="_blank" >demo</a>

Downloads

84

Readme

Message

弱提示模块,需要promise polyfill demo

npm i @eightfeet/message -S
import Message from '@eightfeet/message';

const myMessage = new Message();

myMessage.create('A message!').then(() => console.log('已经完成弱提示'));

parame

| 参数 | 说明 | 是否必填 | 备注 | 类型 | | ------------- | ------------------------------ | -------- | ------------------------------------------------------------ | ------ | | id | 所创建弱提示的id | 否 | 不传可自动生成id(message + 时间戳 + 100以内的随机数) | String | | zIndex | message的样式层级关系 | 否 | 默认10000 | Number | | emBase | em单位的基准像素 | 否 | 默认自动计算(emBase = document.clientWidth/24) | Number | | parentId | 所挂载的父级ID用于做局部弱提示 | 否 | 默认挂在body下面,指定父级dom时将挂载在父级dom下,配合css实现局部弱提示 | String | | directionFrom | 入场方向 | 否 | top,bottom。默认top | String | | style | 定义弱提示样式 | 否 | { wrap: 外包裹 main: 弱提示内容} | Object |

options

  1. create: ƒ (content, time, noRemoval) 创建message

    content String 提示内容。

    time Number 提示保留时间

    noRemoval Boolean 关闭弹窗时是否移除message Dom。 false移除,true保留。

  2. hide: ƒ (noRemoval) 隐藏弹窗

    noRemoval Boolean 关闭弹窗时是否移除弹窗Dom。 false移除,true保留。

  3. remove: ƒ () 移除弹窗

    移除,将message从body中移除。

  4. show: ƒ (content) 显示弹窗

    显示页面Message,如果创建的Message是隐藏而不是移除时,调用此方法显示Message。 content String 提示内容。

case

import Modal from '@eightfeet/Message';

const newMessage = new Message({
        directionFrom: 'top', // 底部位置
        style: { 
            wrap: {
                top: 'auto'
            },
            main: {
                backgroundColor: 'red'
            }
        }
    });

    const btn = document.getElementById('exampleBtn');

    btn.onclick = function(){ 
        return newMessage.create('Message', null, true).then(function(){
            document.getElementById('btnShow').onclick = function(){
                return newMessage.show('显示已存在的Message!');
            };
        });
    }