jquery fadein css同时用,如何同时运行jQuery fadeIn()和slideDown()?

这是我的解决方案,您可以将其用作jQuery插件。

(function($) {

'use strict';

// Sort us out with the options parameters

var getAnimOpts = function (a, b, c) {

if (!a) { return {duration: 'normal'}; }

if (!!c) { return {duration: a, easing: b, complete: c}; }

if (!!b) { return {duration: a, complete: b}; }

if (typeof a === 'object') { return a; }

return { duration: a };

},

getUnqueuedOpts = function (opts) {

return {

queue: false,

duration: opts.duration,

easing: opts.easing

};

};

// Declare our new effects

$.fn.showDown = function (a, b, c) {

var slideOpts = getAnimOpts(a, b, c), fadeOpts = getUnqueuedOpts(slideOpts);

$(this).hide().css('opacity', 0).slideDown(slideOpts).animate({ opacity: 1 }, fadeOpts);

};

$.fn.hideUp = function (a, b, c) {

var slideOpts = getAnimOpts(a, b, c), fadeOpts = getUnqueuedOpts(slideOpts);

$(this).show().css('opacity', 1).slideUp(slideOpts).animate({ opacity: 0 }, fadeOpts);

};

}(jQuery));

现在,您可以像使用jQuery的.fadeIn(或fadeOut)效果一样使用它。

// Show

$('.alert').showDown('slow');

// Hide

$('.alert').hideUp('fast', function() {

// Animation complete: '.alert' is now hidden

});

这将通过渐变效果调整元素的高度。

它最初发布在我的博客上。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值