gpt4 book ai didi

jquery - 使用 jQuery Ui 的滑动效果时也可以滑动后续元素

转载 作者:行者123 更新时间:2023-12-01 00:53:51 25 4
gpt4 key购买 nike

我正在寻找一种方法来切换元素的可见性,方法是将其滑入,同时平滑地推开目标位置的那些元素。

到目前为止,我尝试了 jQueryjQuery Ui 的幻灯片效果,看来我需要将这两者结合起来。

虽然jQuery的幻灯片拉伸(stretch)了相关元素,但我宁愿希望它像在带有overflow:hidden的容器中一样滑入和滑出(例如>jQuery Ui 确实如此)。不幸的是,jQuery Ui 不会在动画期间重新定位相邻元素,而是在动画完成后让它们跳到原来的位置。

我创建了一个Fiddle向你展示我的意思。我的问题是:有没有办法让 jQuery Ui 中的幻灯片没有后续元素跳到其位置,而是平滑地移动到那里?

非常感谢您的建议!

最佳答案

我拿了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中查看结果.

关于jquery - 使用 jQuery Ui 的滑动效果时也可以滑动后续元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7244382/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com