调整窗口/div 大小会导致 div 闪烁

发布于 2024-10-22 08:12:01 字数 416 浏览 2 评论 0原文

我很确定我应该使用缓动来解决这个问题,但不确定如何实现它。

我有以下代码:

function resizeBlock() {
    if ($("#blocks").width < 995) {
    $blwidth = 0;
    }
    else {
    $blwidth = ($("#blocks").width());
    $blwidth = ($blwidth + 60) - 990;
    $("#block-left").width($blwidth);
    }
};
$(window).resize(function(){
resizeBlock();
}

调整窗口大小时,div #block-left 闪烁/跳跃。我将如何使用缓动来解决这个问题?

MTIA

I'm pretty sure that I should be using easing for this problem, but not certain how to implement it.

I have the following code:

function resizeBlock() {
    if ($("#blocks").width < 995) {
    $blwidth = 0;
    }
    else {
    $blwidth = ($("#blocks").width());
    $blwidth = ($blwidth + 60) - 990;
    $("#block-left").width($blwidth);
    }
};
$(window).resize(function(){
resizeBlock();
}

The div #block-left flickers/jumps when resizing the window. How would I use easing to fix this?

MTIA

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌若浮生 2024-10-29 08:12:01

看看 jQuery Animate

$("#block-left").animate({
宽度:$blwidth
});

Have a look at jQuery Animate

$("#block-left").animate({
width: $blwidth
});

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文