jquery可全屏或边栏进度条式的loader加载提示插件

所属分类: 网页特效-动画效果    2023-11-08 02:03:10

jquery可全屏或边栏进度条式的loader加载提示插件 ie兼容6
 查看演示  登录后下载 温馨提示
登录会员即可享受免费下载
 我要建站

jquery可全屏或边栏进度条式的loader加载提示插件(共3个文件)

    • index.html

使用方法

(function ( $ ) {

    $.fn.JQLoader = function( options ) {

        var settings = $.extend({
            theme: "standard",
			mask: true,
			background: "#444",
			color: "#fff",
			action: "open"
        }, options);

		// Reset all class, prevent double dom
		$('.loading').remove();

		if (settings.theme == 'standard')
		{
			// Action
			if (settings.action == 'close')
			{
				$('.loading_box').hide();
				$('.loading_mask').hide();
				return false;
			}

			// Mask option
			if (settings.mask == true)
			{
					var overlay = $('<div class="loading_mask loading"></div>').css({
					'background-color': "#444",
					'opacity': 0.7,
					'width':this.width(),
					'height':this.height(),
					'position':'absolute',
					'top':'0px',
					'left':'0px',
					'overflow': "hidden",
					'z-index':88888
				});

				// Append and call mask element
				this.append(overlay);
				$('.loading_mask').fadeIn(500);
			}

			// Set lood element
			this.append("<div class='loading_box loading'>请稍后..</div>");

			// Style set
			$('.loading_box').css({
				'position':'absolute',
				'top':this.height() / 2,
				'left': (this.width() / 2) - ( 100 / 2),
				'cursor': "pointer",
				'overflow': "hidden",
				'z-index':99999,
				'width':100,
				'color': "#fff"
			});

			// Show lood
			$('.loading_box').show();
		}
		else if (settings.theme == 'bottom')
		{
			if (settings.action == 'close')
			{
				$(".loading-bottom").animate(
					{ opacity: 0 }, {
						duration: 500,
						complete: function() {
						}
					}
				);
				setTimeout(function() {
					$(".loading-bottom").animate(
						{ left: -window_width }, {
							duration: 100,
							easing: 'linear',
							complete: function() {
								$(".loading-text-img").hide();
							}
						}
					);
				}, 500);

				return true;
			}
			else
			{
				// Set element
				lood_div = "<div class='loading-bottom loading'><div class='loading-text-img loading'>请稍后..</div></div>";
				$('body').append(lood_div);

				// Set style
				$(".loading-bottom").css("background", "#444");
				$(".loading-bottom").css("opacity","1");

				// Start
				$(".loading-bottom").animate(
					{ left: 0 }, {
						duration: 1000,
						easing: 'linear',
						complete: function() {
							$(".loading-text-img").fadeIn("slow");
						}
					}
				);

				return false;
			}
		}
		else
		{
			alert('Theme not found or defined');
		}
    };

}( jQuery ));

站长提示:
1. 苦力吧素材官方QQ群:950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励2K币
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / 动画效果

CSS3按钮悬停线性渐变发光特效

一款基于css3创建的按钮悬停发光效果,鼠标悬停在按钮上,触发按钮里面图标变大,并且使得按钮边框线性渐变发光效果。
  动画效果
 174  0

纯CSS3实现的右下角浮动按钮动画特效

一款基于css制作的浮动按钮动画效果,鼠标点击右下角按钮,可触发显示带图标的小按钮菜单,支持关闭。
  动画效果
 993  0

jquery文本文字自定义闪烁变色动画特效代码

一款轻量级文本文字闪烁动画插件,可针对文本文字自定义的眨眼/闪光动画,可设置闪烁颜色、闪烁次数。
  动画效果
 3371  0

纯CSS3实现的大象走路动画特效

一款纯CSS3灰色大象行走动画,模拟人物行走姿态,身体上下缓缓起伏,带阴影效果。
  动画效果
 457  0

评论数(0) 回复有机会获得K币 用户协议

^_^ 还没有人评论,快来抢个沙发!
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论