gpt4 book ai didi

设置高度和溢出的 jQuery slideDown

转载 作者:太空狗 更新时间:2023-10-29 13:04:45 26 4
gpt4 key购买 nike

我有以下 HTML 代码

<div class="text">bla bla bla bla</div>
<div class="button">Show</div>

和 CSS

.text{
height:100px;
overflow:hidden;
}

假设 .text div 有更多的文本,我所做的是将文本量隐藏在 100 像素以下。

如何slideDown() div 以便在单击按钮时可以查看文本?

使用 $(".button").slideDown(); 不起作用,因为我需要删除高度,然后再使用 slideDown() 但这不会要么工作。

最佳答案

我喜欢 Shankar 的解决方案,但在前两次点击后功能就崩溃了。这是因为自动类被内联高度样式覆盖了。因此,我只更改了高度属性。

这是我的做法:

$(".button").click(function(){
$box = $(".text");
minimumHeight = 100;

// get current height
currentHeight = $box.height();

// get height with auto applied
autoHeight = $box.css('height', 'auto').height();

// reset height and revert to original if current and auto are equal
$box.css('height', currentHeight).animate({
height: (currentHeight == autoHeight ? minimumHeight : autoHeight)
})
});

一个缺陷是,如果你给盒子添加填充,你会得到一些丑陋的跳跃。对解决该问题的任何解决方案持开放态度。

Here's a demo

非常欢迎改进和建议

关于设置高度和溢出的 jQuery slideDown,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9036015/

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