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

autoplay-music

v1.0.2

Published

音乐自动播放插件,支持自定义播放与多个音乐播放。

Downloads

19

Readme

DEMO

 示例图

Description 描述:

音乐播放插件,可自定义自动播放与否,支持多个音乐播放。

Install 安装依赖:

npm install autoplay-music --save

Example 引用示例:

HTML示例:
    <a href="javascript:;" class="musicBtn">
        <audio src="media/asMyCat.mp3" id="music" preload="preload" autoplay loop></audio>
    </a>

CSS示例:
    .musicBtn {
        position: absolute;
        z-index: 2;
        top: 0.8rem;
        right: 0.2rem;
        width: 0.56rem;
        height: 0.56rem;
    }
    .musicBtn:before,
    .musicBtn:after {
        content: '';
        position: absolute;
        width: 0.56rem;
        height: 0.56rem;
    }
    .musicBtn:before {
        background: url("images/musicBtnOn.png") no-repeat;
        background-size: 100% 100%;
    }
    .musicBtn:after {
        background: url("images/musicBtnOff.png") no-repeat;
        background-size: 100% 100%;
    }
    .musicBtnOn:before,
    .musicBtnOff:after {
        display: block;
    }
    .musicBtnOn:after,
    .musicBtnOff:before {
        display: none;
    }

JS调用示例:
    playMusic({
        element: ".musicBtn", // 必选。 元素节点,包含音乐的父元素(id或class都可以)。
        media: "#music", // 必选。 音乐节点,<audio>(id或class都可以)。
        autoPlay: true, // 可选。 控制自动播放,true: 自动播放, false: 不自动播放,默认是true。
        canPause: true, // 可选。 是否支持暂停,true: 支持暂停, false: 不支持暂停,默认是true。(值为false,不显示图标)
        onClass: "musicBtnOn", // 若canPause值定义为false,无需定义此属性;否则必选。
        offClass: "musicBtnOff" // 若canPause值定义为false,无需定义此属性;否则必选。
    });

Update 更新历史:

  • 【2018-06-11】v1.0.2 修改demo图片和链接
  • 【2018-06-11】v1.0.1 封装了音乐播放模块,支持自动播放自定义