我正在寻找一种方法来切换元素的可见性,方法是将其滑入,同时平滑地移走目标位置的元素。
到目前为止,我尝试了来自 jQuery 和 jQuery Ui 的两种幻灯片效果,看起来我需要将这两种效果混合在一起。
虽然 jQuery 的幻灯片拉伸了有问题的元素,但我宁愿它像在overflow: hidden
的容器中一样滑入和滑出(如 jQuery Ui 确实)。不幸的是, jQuery Ui 在动画期间不会重新定位相邻元素,但会在动画结束后跳转到它们的位置。
我创建了Fiddle来向您展示我的意思。我的问题是:有没有办法让 jQuery Ui 中的幻灯片没有随后的元素跳到它的位置而是顺利地移动到那里?
非常感谢您的建议!
答案 0 :(得分:6)
我采用ManseUK的想法并扩展了 jQuery Ui 的常规幻灯片效果,以至于在幻灯片动画期间调整了自动创建的包装div的高度。
$.effects.customSlide = function(o) {
return this.queue(function() {
// Create element
var el = $(this),
props = ['position', 'top', 'bottom', 'left', 'right'];
// Set options
var mode = $.effects.setMode(el, o.options.mode || 'show'); // Set Mode
var direction = o.options.direction || 'left'; // Default Direction
// Adjust
$.effects.save(el, props);
el.show(); // Save & Show
$.effects.createWrapper(el).css({
overflow: 'hidden'
}); // Create Wrapper
var ref = (direction == 'up' || direction == 'down') ? 'top' : 'left';
var motion = (direction == 'up' || direction == 'left') ? 'pos' : 'neg';
var distance = o.options.distance || (ref == 'top' ? el.outerHeight({
margin: true
}) : el.outerWidth({
margin: true
}));
if (mode == 'show') el.parent().css('height', 0);
if (mode == 'show') el.css(ref, motion == 'pos' ? (isNaN(distance) ? "-" + distance : -distance) : distance); // Shift
// Animation
var animation = {};
animation[ref] = (mode == 'show' ? (motion == 'pos' ? '+=' : '-=') : (motion == 'pos' ? '-=' : '+=')) + distance;
el.parent().animate({
height: (mode == 'show' ? distance : 0)
}, {
queue: false,
duration: o.duration,
easing: o.options.easing
});
el.animate(animation, {
queue: false,
duration: o.duration,
easing: o.options.easing,
complete: function() {
if (mode == 'hide') el.hide(); // Hide
$.effects.restore(el, props);
$.effects.removeWrapper(el); // Restore
if (o.callback) o.callback.apply(this, arguments); // Callback
el.dequeue();
}
});
您可以在此Fiddle中查看结果。
答案 1 :(得分:1)
谢谢,jnns。干得好! 这是您的解决方案,针对jQuery UI 1.9版进行了更新。
$.effects.effect.customSlide = function (options) {
var el = $(this),
props = ['position', 'top', 'bottom', 'left', 'right'];
// Set options
var mode = $.effects.setMode(el, options.mode || 'show'); // Set Mode
var direction = options.direction || 'left'; // Default Direction
// Adjust
$.effects.save(el, props);
el.show(); // Save & Show
$.effects.createWrapper(el).css({
overflow: 'hidden'
}); // Create Wrapper
var ref = (direction == 'up' || direction == 'down') ? 'top' : 'left';
var motion = (direction == 'up' || direction == 'left') ? 'pos' : 'neg';
var distance = options.distance || (ref == 'top' ? el.outerHeight(true) : el.outerWidth(true));
if (mode == 'show') el.parent().css('height', 0);
if (mode == 'show') el.css(ref, motion == 'pos' ? (isNaN(distance) ? "-" + distance : -distance) : distance); // Shift
// Animation
var animation = {};
animation[ref] = (mode == 'show' ? (motion == 'pos' ? '+=' : '-=') : (motion == 'pos' ? '-=' : '+=')) + distance;
el.parent().animate({
height: (mode == 'show' ? distance : 0)
}, {
queue: false,
duration: options.duration,
easing: options.easing
});
el.animate(animation, {
queue: false,
duration: options.duration,
easing: options.easing,
complete: function () {
if (mode == 'hide') el.hide(); // Hide
$.effects.restore(el, props);
$.effects.removeWrapper(el); // Restore
if (options.callback) options.callback.apply(this, arguments); // Callback
el.dequeue();
}
});
};
答案 2 :(得分:0)
您可以添加包含DIV并设置其高度: