zoukankan      html  css  js  c++  java
  • jqueryloadmask 遮盖层 jquery loading

    http://code.google.com/p/jquery-loadmask/

    LoadMask jQuery plugin can mask DOM elements while their content is loading or changing to prevent user interactions and inform that some background task is still running. It is very light (~2Kb) and easy to use.

    The behavior of this plugin is largely based on handy Element.mask() method from ExtJS Framework.

    You can try online demo here.

    Usage

    jQuery version required: 1.2.3 or later.

    Please note that only elements that accept child nodes can be masked.

    To start using the plugin you need to include jquery.loadmask.css and jquery.loadmask.js (or its minified version jquery.loadmask.min.js) to your html page:

    <linkhref="jquery.loadmask.css"rel="stylesheet"type="text/css"/>
    <scripttype="text/javascript"src="jquery.loadmask.min.js"></script>

    Masking

    To put a mask over an element (or multiple elements) simply call mask(label, delay) method with two optional label and delay parameters:

    $("#mydiv").mask("Loading...");
    $
    (".grids").mask("Loading...",500);

    If label parameter is provided, a little box with this label and a spinner will be placed on top of the mask, otherwise only a transparent gray mask is displayed.

    delay parameter sets a delay in milliseconds before element(s) is masked. If unmask() is called before the delay times out, no mask is displayed. This can be used to prevent unnecessary mask display for quick processes.

    Unmasking

    To remove a previously displayed mask from an element (or multiple elements) call unmask() without any parameters:

    $("#mydiv").unmask();

    Calling unmask() on a delayed mask prevents it from showing up.

    Checking if an element is masked

    You can use isMasked() method on a single element to check if it is currently masked. Please note that this method will return false while mask is delayed.

    if($("#mydiv").isMasked()){...}

    Integration with ASP.net UpdatePanel

    Please take a look at this code.

    Integration with Jquery UI

    Please take a look at this code.

    Contributors

    • wpaap - provided snapshot for integration with ASP.net UpdatePanel
    • Artur Alexandre Moreira (artur.alexandre@gmail.com) - implemented delayed mask
    • theonlylawislove - provided Jquery UI integration solution

    Thank you!

  • 相关阅读:
    7-3.自定义列表
    GoLang 使用协程与管道随机生成姓名
    [Unity3D] 点击物品显示物品信息
    [Unity3D] 碰撞物体添加到背包
    [PS] DDS文件导入插件
    [Unity3D] 给角色添加武器
    [Unity3D] 刚体 碰撞器 触发器
    [Unity3D] 物体的几种移动方法
    [Unity3D] 解决导入的模型出现闪烁的问题
    [Unity3D] 人物角色跳跃(动画跳跃&刚体跳跃)
  • 原文地址:https://www.cnblogs.com/wucg/p/2459678.html
Copyright © 2011-2022 走看看