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

ielevator

v1.2.0

Published

ielevator is quite useful for simulating elevator.

Downloads

23

Readme

iElevator.js

npm version Bower version GitHub version

this is a jQuery plugin for elevator, lightweight, easy to use and with some extra features demo

install

npm install ielevator or bower install ielevator

Features

  • UMD support(AMD, CMD, Globals)
  • Flexible HTML structure
  • Provide several method of configuration
  • Compatible with IE6+, Chrome, Firefox, Safari
  • Extra functions

Dependencies

this is a jQuery plugin, So jQuery is required,

configuration

In order to ensure the plugin work normally, you provide at least one of “backtop” , "floors + btns" or "floors + btns + backtop"

Default Options

    
_defaults = {
    floors: null,
    btns: null,
    backtop: null,
    selected: '',
    sticky: -1,
    visible: {
        isHide: 'no',
        numShow: 0
    },
    speed: 400,
    show: function(me) {
        me.element.show();
    },
    hide: function(me) {
        me.element.hide();
    }
}
'floors' option
  • (selector)select all elements with the given class, each represents a floor module. the default is null.
	$('#elevator').({
  	 floors: $('js-floor')
    });
'btns' option
  • (selector)select all elements with the given class, each represents a focus button. the default is null.
	$('#elevator').({
  	 btns: $('js-btn')
    });
'backtop' option
  • (selector)select all elements with the given class, each represents back-to-top button. the default is null.
	$('#elevator').({
  	 backtop: $('js-backtop')
    });
'selected' option
  • (css)selected refers to style of [btns option] selected or hover, or (selector) represents simulate selected object
	$('#elevator').({
		selected: ''
        // selected: $('hightlight')
    });
'sticky' option
  • (number)sticky emulates 'sticky position', is a Number type(the default is -1) and represents margin from top of elevator to top of viewport .
    $('#elevator').({
       sticky: 100
    });
'visible' option
  • control elevator visibility, and contain isHide, numShow properties
  • isHide: yes|no. if yes, elevator is visible on initialization, and vice versa. ++NOTE: if no,however set any value to numShow, numShow doesn't make sense.++
  • numShow:Number. when scrollTop is greater than number, elevator will be visible. and vice versa
	$('#elevator').({
      visible: {isHide: 'no', numShow: 0}
    });
'speed' option
  • control the speed of slider bar of window
	$('#elevator').({
 		speed: 400
    });
'show' option
  • override show function
    show: function (me) {
    	me.element.show();
    },
'hide' option
  • override hide function
hide: function (me) {
  me.element.hide();
}

Usage

it is easy to use, only you ovrride default options to meet your requirements what you want. the following four examples to illustrate the plugin how to use.

1. back to top【example

HTML structure:

    <div class="elevator elevator-backtop" id="backtop" >
        <a href="javascript:;" class="js-backtop">TOP</a>
    </div>

Javascript:

    $('#backtop').ielevator({
        backtop: $('#backtop .js-backtop')
    });

the example is very easy, only to get the "back to top" reference, and then [back to top] works

2. simulate elelvator【example

HTML structure:

    <div class="elevator" id="elevator" data-elevator-options='{"selected": "custome-selected"}'>
        <ul>
            <li><a href="javascript:;" class="custome-selected js-btn">floor1</a></li>
            <li><a href="javascript:;" class="js-btn">floor2</a></li>
            <li><a href="javascript:;" class="js-btn">floor3</a></li>
            <li><a href="javascript:;" class="js-btn">floor4</a></li>
            <li><a href="javascript:;" class="js-btn">floor5</a></li>
            <li><a href="javascript:;" class="js-btn">floor6</a></li>
            <li><a href="javascript:;" class="js-btn">floor7</a></li>
        </ul>
    </div>

Javascript:

    $('#elevator').ielevator({
        floors: $('.js-floor'),
        btns: $('#elevator .js-btn'),
        selected: 'selected',
        visible: {isHide: 'yes', numShow: 400},
        show: function() {
            $('#elevator').slideDown(400);
        },
        hide: function() {
            $('#elevator').slideUp(400);
        }
    });
NOTE: data-ielevator-options='{"selected": "custome-selected"}' is the highest priority. therefore, 'custome-selected' will overwrite 'selected' in configuration object

3. simulate elevator + back to top【example

HTML structure:

    <div class="elevator" id="elevator" data-elevator-options=''>
        <ul>
            <li><a href="javascript:;" class="custome-selected js-btn">floor1</a></li>
            <li><a href="javascript:;" class="js-btn">floor2</a></li>
            <li><a href="javascript:;" class="js-btn">floor3</a></li>
            <li><a href="javascript:;" class="js-btn">floor4</a></li>
            <li><a href="javascript:;" class="js-btn">floor5</a></li>
            <li><a href="javascript:;" class="js-btn">floor6</a></li>
            <li><a href="javascript:;" class="js-btn">floor7</a></li>
            <li><a href="javascript:;" class="js-backtop">TOP</a></li>
        </ul>
    </div>

Javascript:

    $('#elevator').ielevator({
        floors: $('.js-floor'),
        btns: $('#elevator .js-btn'),
        backtop: $('#elevator .js-backtop'),
        selected: 'selected',
        visible: {isHide: 'yes', numShow: 400},
        show: function() {
            $('#elevator').slideDown(400);
        },
        hide: function() {
            $('#elevator').slideUp(400);
        }
    });

4. require.js example【demoAMD

5. 模拟segmentfault文章导航【example

Javascript:

    // 获取Markdown中的标题
    var $demo = $('#demo'),
        $titles = $('h2'),
        $nav = $demo.find('.list'),
        $highlight = $demo.find('.highlight'),
        STR = '';
    // 填充标题
    $titles.each(function(){
        STR += '<li><a>'+ $(this).text() +'</a></li>';
    });
    $nav.html(STR);
    // 调用ielevator
    $demo.ielevator({
        floors: $titles,
        btns: $('#demo li'),
        sticky: 10,
        selected: $highlight
    });

中文

#####iElevator.js是一个jquery小插件,使用简单,兼容IE6,支持UMD和3种配置方式,比锚点更灵活。


#####Default Options

_defaults = {
    floors: null,
    btns: null,
    backtop: null,
    selected: '',
    sticky: -1,
    visible: {isHide: 'no', numShow: 0},
    speed: 400,
    show: function (me) {
        me.element.show();
    },
    hide: function (me) {
        me.element.hide();
    }
  }
  • floors:页面中floor模块的引用
  • btns: 焦点图的引用
  • backtop: 回到顶部按钮的引用
  • selected: 焦点图在进行滚动或单击时的选中样式
  • sticky: 模拟position: sticky定位,并可以指定elevator顶部距离窗口顶部的距离,默认为-1
  • visible: 用于控制【电梯】的显示与隐藏,当srollTop值大于numShow时,显示【电梯】,反之则隐藏
  • speed: 控制滑条的滚动速度
  • show: 可以重写该函数,来定制elevator的显示方式
  • hide: 可以重写该函数,来定制elevator的隐藏方式

安装

npm install ielevator or bower install ielevator

changelog

  • 1.2.0: 增加throttle,对scroll事件进行节流优化,修复sticky|visible

License

iElevator.js is covered by the MIT License.