首页 > 代码库 > 左右悬浮
左右悬浮
(function($) { $.fn.sideFixed = function(options) { var opts = $.extend(true, {}, $.fn.sideFixed.defaults, options); return this.each(function() { var $this = $(this); $this.on("mouseenter",function() { $(".mask").stop().animate({opacity:0.4}); $(".mask").show(); $(".mask").css({ width:$(document).outerWidth(), height:$(document).outerHeight() }); if(opts.direction==="right"){ $(this).stop().animate({ right:"0px" },800); }else if(opts.direction==="left"){ $(this).stop().animate({ left:"0px" },800); } }).on("mouseleave",function() { $(".mask").stop().fadeOut(800); $(".mask").stop().animate({opacity:0},function(){$(".mask").hide();}); if(opts.direction==="right"){ $(this).stop().animate({ right:-$(this).width() }); }else if(opts.direction==="left"){ $(this).stop().animate({ left:-$(this).width() }); } }); }); }; $.fn.sideFixed.defaults = { direction:"left"};})(jQuery);
左右悬浮
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。